@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@300;400;600&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Saira Condensed", sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

html {
  margin: 0 auto;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  background-color: white;
}

main {
  margin-bottom: 20px;
}

header img {
  width: 100%;
  display: block;
}

.navbar {
  position: fixed;
  width: 100%;
  height: 55px;
  z-index: 1;
  background-color: rgba(31, 31, 31, 0.95);
  box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.42);
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.fa-bars {
  display: block;
  position: absolute;
  top: 8.5px;
  left: 35px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.nav-container {
  display: block;
  position: relative;
  height: 69px;
}

.nav-items {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  height: 100vh;
  width: 90%;
  padding-top: 20px;
  background-color: rgba(31, 31, 31, 0.95);
  box-shadow: 5px 0px 15px 0px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3.2px);
  transform: translate(-150%);
  transition: transform 0.2s;
}
.nav-items .fa-xmark {
  display: inline-block;
  padding-top: 15px;
  padding-left: 30px;
  font-size: 50px;
  color: white;
  cursor: pointer;
}
.nav-items .links {
  margin-top: 65px;
  margin-bottom: 15px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
}
.nav-items .links a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 2.5rem;
  padding-bottom: 10px;
  font-weight: 600;
}
.nav-items .socials {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: space-around;
  margin: 0 30px;
}
.nav-items .socials a {
  color: white;
  font-size: 40px;
}

.socials a:hover,
.links a:hover,
.fa-bars:hover,
.fa-xmark:hover {
  color: lightblue;
}

.line {
  background-color: white;
  height: 2.5px;
  width: 90%;
  margin: 90px auto 90px auto;
  border-radius: 5px;
}

.nav-logo {
  position: absolute;
  top: 5px;
  right: 15px;
}
.nav-logo img {
  height: 40px;
}

footer {
  background-color: rgba(39, 39, 38, 0.98);
  height: 40px;
  width: 100%;
  margin-top: 25px;
}
footer .footer-social {
  display: block;
  margin-right: 5px;
  font-size: 24px;
  float: right;
}
footer .footer-social p {
  display: none;
}
footer .footer-social a {
  color: white;
  padding-right: 15px;
}
footer .footer-social a:hover {
  color: lightblue;
}

@media all and (min-width: 685px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    height: 69px;
    align-items: center;
  }
  .nav-items {
    flex-direction: row;
    height: 70px !important;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    transform: translate(0%) !important;
    backdrop-filter: blur(0px);
    padding-top: 15px;
    box-shadow: none;
    justify-content: center;
    order: 2;
  }
  .nav-items .links {
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    margin-top: 0;
    padding-left: 0;
  }
  .nav-items .links span a {
    font-size: 32px;
  }
  .nav-items .links span:nth-child(1) {
    display: none;
  }
  .nav-logo {
    order: 1;
    position: relative;
    right: 0;
    top: -1px;
    margin: 0 25px;
    height: 55px;
  }
  .nav-logo img {
    height: 45px;
  }
  .socials,
  .line {
    display: none !important;
  }
  .menu-button {
    display: none !important;
  }
  footer {
    position: sticky;
    top: 100%;
  }
  footer .footer-social {
    display: block;
    margin: 0px 25px 0px 0;
    font-size: 24px;
    float: right;
  }
  footer .footer-social p {
    display: inline-flex;
    padding-right: 10px;
    color: white;
    font-weight: 600;
  }
  footer .footer-social a {
    color: white;
    padding-right: 15px;
  }
  footer .footer-social a:hover {
    color: lightblue;
  }
}
main {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner-container {
  top: -63px;
  transition: top 0.35s ease-in-out;
}

.parallax {
  background-image: url("../../images/bg-img.jpg");
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow-y: hidden;
}
.parallax .caption {
  display: flex;
  flex-direction: column;
  margin: 0 auto 45px;
  text-align: center;
  font-size: 36px;
  color: white;
  font-weight: 600;
  max-width: 375px;
}
.parallax .caption p {
  text-shadow: 0px 5px 7px rgba(0, 0, 0, 0.42);
}
.parallax .caption .intro {
  color: white;
  padding-bottom: 5px;
}
.parallax .caption .intro::before {
  content: "​";
  content: "​"/"I'm Delano";
  alt: "I'm Delano";
  white-space: break-spaces;
  will-change: content;
  animation: typed-0 3.7s linear 1s 1 forwards, typed-0-final 0.8333333333s linear 4.7s 1 forwards;
}
@keyframes typed-0-final {
  0%, 10% {
    content: "​I";
    content: "​I"/"I'm Delano";
    alt: "I'm Delano";
  }
  10.001%, 20% {
    content: "​I'";
    content: "​I'"/"I'm Delano";
    alt: "I'm Delano";
  }
  20.001%, 30% {
    content: "​I'm";
    content: "​I'm"/"I'm Delano";
    alt: "I'm Delano";
  }
  30.001%, 40% {
    content: "​I'm ";
    content: "​I'm "/"I'm Delano";
    alt: "I'm Delano";
  }
  40.001%, 50% {
    content: "​I'm D";
    content: "​I'm D"/"I'm Delano";
    alt: "I'm Delano";
  }
  50.001%, 60% {
    content: "​I'm De";
    content: "​I'm De"/"I'm Delano";
    alt: "I'm Delano";
  }
  60.001%, 70% {
    content: "​I'm Del";
    content: "​I'm Del"/"I'm Delano";
    alt: "I'm Delano";
  }
  70.001%, 80% {
    content: "​I'm Dela";
    content: "​I'm Dela"/"I'm Delano";
    alt: "I'm Delano";
  }
  80.001%, 90% {
    content: "​I'm Delan";
    content: "​I'm Delan"/"I'm Delano";
    alt: "I'm Delano";
  }
  90.001%, 100% {
    content: "​I'm Delano";
    content: "​I'm Delano"/"I'm Delano";
    alt: "I'm Delano";
  }
}
@keyframes typed-0 {
  0%, 2.2512522523% {
    content: "​W";
    content: "​W"/"I'm Delano";
    alt: "I'm Delano";
  }
  2.2522522523%, 4.5035045045% {
    content: "​We";
    content: "​We"/"I'm Delano";
    alt: "I'm Delano";
  }
  4.5045045045%, 6.7557567568% {
    content: "​Wel";
    content: "​Wel"/"I'm Delano";
    alt: "I'm Delano";
  }
  6.7567567568%, 9.008009009% {
    content: "​Welc";
    content: "​Welc"/"I'm Delano";
    alt: "I'm Delano";
  }
  9.009009009%, 11.2602612613% {
    content: "​Welco";
    content: "​Welco"/"I'm Delano";
    alt: "I'm Delano";
  }
  11.2612612613%, 13.5125135135% {
    content: "​Welcom";
    content: "​Welcom"/"I'm Delano";
    alt: "I'm Delano";
  }
  13.5135135135%, 15.7647657658% {
    content: "​Welcome";
    content: "​Welcome"/"I'm Delano";
    alt: "I'm Delano";
  }
  15.7657657658%, 64.8638648649% {
    content: "​Welcome!";
    content: "​Welcome!"/"I'm Delano";
    alt: "I'm Delano";
  }
  64.8648648649%, 66.6656666667% {
    content: "​Welcome";
    content: "​Welcome"/"I'm Delano";
    alt: "I'm Delano";
  }
  66.6666666667%, 68.4674684685% {
    content: "​Welcom";
    content: "​Welcom"/"I'm Delano";
    alt: "I'm Delano";
  }
  68.4684684685%, 70.2692702703% {
    content: "​Welco";
    content: "​Welco"/"I'm Delano";
    alt: "I'm Delano";
  }
  70.2702702703%, 72.0710720721% {
    content: "​Welc";
    content: "​Welc"/"I'm Delano";
    alt: "I'm Delano";
  }
  72.0720720721%, 73.8728738739% {
    content: "​Wel";
    content: "​Wel"/"I'm Delano";
    alt: "I'm Delano";
  }
  73.8738738739%, 75.6746756757% {
    content: "​We";
    content: "​We"/"I'm Delano";
    alt: "I'm Delano";
  }
  75.6756756757%, 77.4764774775% {
    content: "​W";
    content: "​W"/"I'm Delano";
    alt: "I'm Delano";
  }
  77.4774774775%, 100% {
    content: "​";
    content: "​"/"I'm Delano";
    alt: "I'm Delano";
  }
}
.parallax .caption .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: logoFade;
  opacity: 0;
  animation: arrowFade 2s forwards;
  animation-delay: 7.5s;
}
.parallax .caption .logo img {
  max-width: 75%;
  opacity: 0.95;
}
@keyframes logoFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.parallax .caption .intro-addition {
  color: white;
  opacity: 0;
}
.parallax .caption .intro-addition::before {
  content: "​";
  content: "​"/"aka A Bit of Sole";
  alt: "aka A Bit of Sole";
  white-space: break-spaces;
  will-change: content;
  animation: intro-addition 18.6461538462s linear 1s infinite forwards;
}
.parallax .caption .intro-addition::after {
  content: "​";
  position: relative;
  display: inline-block;
  padding-right: 2px;
  border-right: 5px solid currentColor;
  white-space: nowrap;
  animation: intro-addition-caret 0.75s linear 1s infinite forwards;
}
@keyframes intro-addition {
  0%, 0.4115412541% {
    content: "​a";
    content: "​a"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  0.4125412541%, 0.8240825083% {
    content: "​ak";
    content: "​ak"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  0.8250825083%, 1.2366237624% {
    content: "​aka";
    content: "​aka"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  1.2376237624%, 1.6491650165% {
    content: "​aka ";
    content: "​aka "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  1.6501650165%, 2.0617062706% {
    content: "​aka A";
    content: "​aka A"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  2.0627062706%, 2.4742475248% {
    content: "​aka A ";
    content: "​aka A "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  2.4752475248%, 2.8867887789% {
    content: "​aka A B";
    content: "​aka A B"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  2.8877887789%, 3.299330033% {
    content: "​aka A Bi";
    content: "​aka A Bi"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  3.300330033%, 3.7118712871% {
    content: "​aka A Bit";
    content: "​aka A Bit"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  3.7128712871%, 4.1244125413% {
    content: "​aka A Bit ";
    content: "​aka A Bit "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  4.1254125413%, 4.5369537954% {
    content: "​aka A Bit o";
    content: "​aka A Bit o"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  4.5379537954%, 4.9494950495% {
    content: "​aka A Bit of";
    content: "​aka A Bit of"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  4.9504950495%, 5.3620363036% {
    content: "​aka A Bit of ";
    content: "​aka A Bit of "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  5.3630363036%, 5.7745775578% {
    content: "​aka A Bit of S";
    content: "​aka A Bit of S"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  5.7755775578%, 6.1871188119% {
    content: "​aka A Bit of So";
    content: "​aka A Bit of So"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  6.1881188119%, 6.599660066% {
    content: "​aka A Bit of Sol";
    content: "​aka A Bit of Sol"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  6.600660066%, 15.5930594059% {
    content: "​aka A Bit of Sole";
    content: "​aka A Bit of Sole"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  15.5940594059%, 15.9230924092% {
    content: "​aka A Bit of Sol";
    content: "​aka A Bit of Sol"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  15.9240924092%, 16.2531254125% {
    content: "​aka A Bit of So";
    content: "​aka A Bit of So"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  16.2541254125%, 16.5831584158% {
    content: "​aka A Bit of S";
    content: "​aka A Bit of S"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  16.5841584158%, 16.9131914191% {
    content: "​aka A Bit of ";
    content: "​aka A Bit of "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  16.9141914191%, 17.2432244224% {
    content: "​aka A Bit of";
    content: "​aka A Bit of"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  17.2442244224%, 17.5732574257% {
    content: "​aka A Bit o";
    content: "​aka A Bit o"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  17.5742574257%, 17.903290429% {
    content: "​aka A Bit ";
    content: "​aka A Bit "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  17.904290429%, 18.2333234323% {
    content: "​aka A Bit";
    content: "​aka A Bit"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  18.2343234323%, 18.5633564356% {
    content: "​aka A Bi";
    content: "​aka A Bi"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  18.5643564356%, 18.8933894389% {
    content: "​aka A B";
    content: "​aka A B"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  18.8943894389%, 19.2234224422% {
    content: "​aka A ";
    content: "​aka A "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  19.2244224422%, 19.5534554455% {
    content: "​aka A";
    content: "​aka A"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  19.5544554455%, 19.8834884488% {
    content: "​aka ";
    content: "​aka "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  19.8844884488%, 20.2135214521% {
    content: "​aka";
    content: "​aka"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  20.2145214521%, 20.5435544554% {
    content: "​ak";
    content: "​ak"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  20.5445544554%, 20.8735874587% {
    content: "​a";
    content: "​a"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  20.8745874587%, 24.999% {
    content: "​";
    content: "​"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  25%, 25.4115412541% {
    content: "​F";
    content: "​F"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  25.4125412541%, 25.8240825083% {
    content: "​Fr";
    content: "​Fr"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  25.8250825083%, 26.2366237624% {
    content: "​Fro";
    content: "​Fro"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  26.2376237624%, 26.6491650165% {
    content: "​Fron";
    content: "​Fron"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  26.6501650165%, 27.0617062706% {
    content: "​Front";
    content: "​Front"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  27.0627062706%, 27.4742475248% {
    content: "​Fronte";
    content: "​Fronte"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  27.4752475248%, 27.8867887789% {
    content: "​Fronten";
    content: "​Fronten"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  27.8877887789%, 28.299330033% {
    content: "​Frontend";
    content: "​Frontend"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  28.300330033%, 28.7118712871% {
    content: "​Frontend ";
    content: "​Frontend "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  28.7128712871%, 29.1244125413% {
    content: "​Frontend D";
    content: "​Frontend D"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  29.1254125413%, 29.5369537954% {
    content: "​Frontend De";
    content: "​Frontend De"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  29.5379537954%, 29.9494950495% {
    content: "​Frontend Dev";
    content: "​Frontend Dev"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  29.9504950495%, 30.3620363036% {
    content: "​Frontend Deve";
    content: "​Frontend Deve"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  30.3630363036%, 30.7745775578% {
    content: "​Frontend Devel";
    content: "​Frontend Devel"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  30.7755775578%, 31.1871188119% {
    content: "​Frontend Develo";
    content: "​Frontend Develo"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  31.1881188119%, 31.599660066% {
    content: "​Frontend Develop";
    content: "​Frontend Develop"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  31.600660066%, 32.0122013201% {
    content: "​Frontend Develope";
    content: "​Frontend Develope"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  32.0132013201%, 41.0056006601% {
    content: "​Frontend Developer";
    content: "​Frontend Developer"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  41.0066006601%, 41.3356336634% {
    content: "​Frontend Develope";
    content: "​Frontend Develope"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  41.3366336634%, 41.6656666667% {
    content: "​Frontend Develop";
    content: "​Frontend Develop"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  41.6666666667%, 41.99569967% {
    content: "​Frontend Develo";
    content: "​Frontend Develo"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  41.99669967%, 42.3257326733% {
    content: "​Frontend Devel";
    content: "​Frontend Devel"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  42.3267326733%, 42.6557656766% {
    content: "​Frontend Deve";
    content: "​Frontend Deve"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  42.6567656766%, 42.9857986799% {
    content: "​Frontend Dev";
    content: "​Frontend Dev"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  42.9867986799%, 43.3158316832% {
    content: "​Frontend De";
    content: "​Frontend De"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  43.3168316832%, 43.6458646865% {
    content: "​Frontend D";
    content: "​Frontend D"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  43.6468646865%, 43.9758976898% {
    content: "​Frontend ";
    content: "​Frontend "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  43.9768976898%, 44.3059306931% {
    content: "​Frontend";
    content: "​Frontend"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  44.3069306931%, 44.6359636964% {
    content: "​Fronten";
    content: "​Fronten"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  44.6369636964%, 44.9659966997% {
    content: "​Fronte";
    content: "​Fronte"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  44.9669966997%, 45.296029703% {
    content: "​Front";
    content: "​Front"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  45.297029703%, 45.6260627063% {
    content: "​Fron";
    content: "​Fron"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  45.6270627063%, 45.9560957096% {
    content: "​Fro";
    content: "​Fro"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  45.9570957096%, 46.2861287129% {
    content: "​Fr";
    content: "​Fr"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  46.2871287129%, 46.6161617162% {
    content: "​F";
    content: "​F"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  46.6171617162%, 50.7415742574% {
    content: "​";
    content: "​"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  50.7425742574%, 51.1541155116% {
    content: "​3";
    content: "​3"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  51.1551155116%, 51.5666567657% {
    content: "​3D";
    content: "​3D"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  51.5676567657%, 51.9791980198% {
    content: "​3D ";
    content: "​3D "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  51.9801980198%, 52.3917392739% {
    content: "​3D M";
    content: "​3D M"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  52.3927392739%, 52.8042805281% {
    content: "​3D Mo";
    content: "​3D Mo"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  52.8052805281%, 53.2168217822% {
    content: "​3D Mod";
    content: "​3D Mod"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  53.2178217822%, 53.6293630363% {
    content: "​3D Mode";
    content: "​3D Mode"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  53.6303630363%, 54.0419042904% {
    content: "​3D Model";
    content: "​3D Model"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  54.0429042904%, 54.4544455446% {
    content: "​3D Model ";
    content: "​3D Model "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  54.4554455446%, 54.8669867987% {
    content: "​3D Model A";
    content: "​3D Model A"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  54.8679867987%, 55.2795280528% {
    content: "​3D Model Ar";
    content: "​3D Model Ar"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  55.2805280528%, 55.6920693069% {
    content: "​3D Model Art";
    content: "​3D Model Art"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  55.6930693069%, 56.1046105611% {
    content: "​3D Model Arti";
    content: "​3D Model Arti"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  56.1056105611%, 56.5171518152% {
    content: "​3D Model Artis";
    content: "​3D Model Artis"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  56.5181518152%, 65.5105511551% {
    content: "​3D Model Artist";
    content: "​3D Model Artist"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  65.5115511551%, 65.8405841584% {
    content: "​3D Model Artis";
    content: "​3D Model Artis"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  65.8415841584%, 66.1706171617% {
    content: "​3D Model Arti";
    content: "​3D Model Arti"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  66.1716171617%, 66.500650165% {
    content: "​3D Model Art";
    content: "​3D Model Art"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  66.501650165%, 66.8306831683% {
    content: "​3D Model Ar";
    content: "​3D Model Ar"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  66.8316831683%, 67.1607161716% {
    content: "​3D Model A";
    content: "​3D Model A"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  67.1617161716%, 67.4907491749% {
    content: "​3D Model ";
    content: "​3D Model "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  67.4917491749%, 67.8207821782% {
    content: "​3D Model";
    content: "​3D Model"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  67.8217821782%, 68.1508151815% {
    content: "​3D Mode";
    content: "​3D Mode"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  68.1518151815%, 68.4808481848% {
    content: "​3D Mod";
    content: "​3D Mod"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  68.4818481848%, 68.8108811881% {
    content: "​3D Mo";
    content: "​3D Mo"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  68.8118811881%, 69.1409141914% {
    content: "​3D M";
    content: "​3D M"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  69.1419141914%, 69.4709471947% {
    content: "​3D ";
    content: "​3D "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  69.4719471947%, 69.800980198% {
    content: "​3D";
    content: "​3D"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  69.801980198%, 70.1310132013% {
    content: "​3";
    content: "​3"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  70.1320132013%, 74.2564257426% {
    content: "​";
    content: "​"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  74.2574257426%, 74.6689669967% {
    content: "​S";
    content: "​S"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  74.6699669967%, 75.0815082508% {
    content: "​Sn";
    content: "​Sn"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  75.0825082508%, 75.494049505% {
    content: "​Sne";
    content: "​Sne"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  75.495049505%, 75.9065907591% {
    content: "​Snea";
    content: "​Snea"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  75.9075907591%, 76.3191320132% {
    content: "​Sneak";
    content: "​Sneak"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  76.3201320132%, 76.7316732673% {
    content: "​Sneake";
    content: "​Sneake"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  76.7326732673%, 77.1442145215% {
    content: "​Sneaker";
    content: "​Sneaker"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  77.1452145215%, 77.5567557756% {
    content: "​Sneaker ";
    content: "​Sneaker "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  77.5577557756%, 77.9692970297% {
    content: "​Sneaker C";
    content: "​Sneaker C"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  77.9702970297%, 78.3818382838% {
    content: "​Sneaker Cu";
    content: "​Sneaker Cu"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  78.3828382838%, 78.794379538% {
    content: "​Sneaker Cus";
    content: "​Sneaker Cus"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  78.795379538%, 79.2069207921% {
    content: "​Sneaker Cust";
    content: "​Sneaker Cust"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  79.2079207921%, 79.6194620462% {
    content: "​Sneaker Custo";
    content: "​Sneaker Custo"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  79.6204620462%, 80.0320033003% {
    content: "​Sneaker Custom";
    content: "​Sneaker Custom"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  80.0330033003%, 80.4445445545% {
    content: "​Sneaker Customi";
    content: "​Sneaker Customi"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  80.4455445545%, 80.8570858086% {
    content: "​Sneaker Customiz";
    content: "​Sneaker Customiz"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  80.8580858086%, 81.2696270627% {
    content: "​Sneaker Customize";
    content: "​Sneaker Customize"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  81.2706270627%, 90.2630264026% {
    content: "​Sneaker Customizer";
    content: "​Sneaker Customizer"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  90.2640264026%, 90.5930594059% {
    content: "​Sneaker Customize";
    content: "​Sneaker Customize"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  90.5940594059%, 90.9230924092% {
    content: "​Sneaker Customiz";
    content: "​Sneaker Customiz"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  90.9240924092%, 91.2531254125% {
    content: "​Sneaker Customi";
    content: "​Sneaker Customi"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  91.2541254125%, 91.5831584158% {
    content: "​Sneaker Custom";
    content: "​Sneaker Custom"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  91.5841584158%, 91.9131914191% {
    content: "​Sneaker Custo";
    content: "​Sneaker Custo"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  91.9141914191%, 92.2432244224% {
    content: "​Sneaker Cust";
    content: "​Sneaker Cust"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  92.2442244224%, 92.5732574257% {
    content: "​Sneaker Cus";
    content: "​Sneaker Cus"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  92.5742574257%, 92.903290429% {
    content: "​Sneaker Cu";
    content: "​Sneaker Cu"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  92.904290429%, 93.2333234323% {
    content: "​Sneaker C";
    content: "​Sneaker C"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  93.2343234323%, 93.5633564356% {
    content: "​Sneaker ";
    content: "​Sneaker "/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  93.5643564356%, 93.8933894389% {
    content: "​Sneaker";
    content: "​Sneaker"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  93.8943894389%, 94.2234224422% {
    content: "​Sneake";
    content: "​Sneake"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  94.2244224422%, 94.5534554455% {
    content: "​Sneak";
    content: "​Sneak"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  94.5544554455%, 94.8834884488% {
    content: "​Snea";
    content: "​Snea"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  94.8844884488%, 95.2135214521% {
    content: "​Sne";
    content: "​Sne"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  95.2145214521%, 95.5435544554% {
    content: "​Sn";
    content: "​Sn"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  95.5445544554%, 95.8735874587% {
    content: "​S";
    content: "​S"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
  95.8745874587%, 100% {
    content: "​";
    content: "​"/"aka A Bit of Sole";
    alt: "aka A Bit of Sole";
  }
}
@keyframes intro-addition-caret {
  75% {
    border-color: transparent;
  }
}
.parallax .caption .intro-addition::before {
  animation-play-state: paused;
}
.parallax .caption .update::before {
  animation-play-state: running;
}
.parallax .arrow {
  display: flex;
  justify-content: space-around;
  color: white;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 60px;
  font-size: 28px;
  opacity: 0;
  animation: arrowFade 3s forwards;
  animation-delay: 10s;
}
.parallax .arrow i {
  opacity: 0.1;
}
@keyframes arrowFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.content-container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0px 16px;
  grid-auto-flow: row;
  margin: 0 16px;
}

.info {
  grid-column: 1/5;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  gap: 3rem;
}
.info h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 15px;
}
.info .about-me {
  display: flex;
  flex-direction: column;
}
.info .about-me .bio {
  max-width: 700px;
}
.info .about-me .bio p {
  font-size: 18px;
  padding: 0 10px;
}
.info .resume a {
  padding-top: 10px;
  color: #384956;
}

.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 450px;
  margin: 0 auto;
}
.skills-grid .grid-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: center;
}
.skills-grid .icon {
  width: 90px;
  height: 90px;
  border: 3px solid #384956;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}
.skills-grid .icon img {
  width: 40px;
}
.skills-grid .icon p {
  font-weight: 600;
}

@media all and (min-width: 1024px) {
  .caption {
    max-width: 45% !important;
  }
  .caption .intro,
  .caption .intro-addition {
    font-size: 3.5rem;
  }
}

/*# sourceMappingURL=index.css.map */
