:root {
  --delay: 0.4s;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

body {
  font-family: "Product Sans", sans-serif;
}

.btn-floating {
  font-family: monospace, monospace, Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
}

#up-btn {
  transition: all 0.2s;
  transform: scale(0);
}

#up-btn.shown {
  transform: scale(1);
}

.cardhold.go-up {
  -webkit-animation: move-up 0.45s calc(0.2s + var(--delay)) ease-in;
          animation: move-up 0.45s calc(0.2s + var(--delay)) ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.handwriting-holder.go-up {
  -webkit-animation: move-up-2 0.45s calc(0.325s + var(--delay)) ease-in;
          animation: move-up-2 0.45s calc(0.325s + var(--delay)) ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.loader.hidden {
  -webkit-animation: wipe 0.9s calc(0.55s + var(--delay)) cubic-bezier(0.145, 0.865, 0.57, 0.94);
          animation: wipe 0.9s calc(0.55s + var(--delay)) cubic-bezier(0.145, 0.865, 0.57, 0.94);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.loader.show {
  -webkit-animation: wipe-reverse 0.34s cubic-bezier(0.145, 0.865, 0.57, 0.94);
          animation: wipe-reverse 0.34s cubic-bezier(0.145, 0.865, 0.57, 0.94);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

nav.hidden {
  transform: translateY(-100%);
  transition: all 0s;
}

@-webkit-keyframes move-up {
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
  100% {
    opacity: 0;
    transform: translateY(-30vh) scale(1.25);
  }
}

@keyframes move-up {
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
  100% {
    opacity: 0;
    transform: translateY(-30vh) scale(1.25);
  }
}
@-webkit-keyframes move-up-2 {
  50% {
    opacity: 0.75;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30vh);
  }
}
@keyframes move-up-2 {
  50% {
    opacity: 0.75;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30vh);
  }
}
@-webkit-keyframes wipe {
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
    visibility: hidden;
  }
}
@keyframes wipe {
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
    visibility: hidden;
  }
}
@-webkit-keyframes wipe-reverse {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wipe-reverse {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
nav {
  opacity: 0.95;
  background: linear-gradient(90deg, #3498db, #8e44ad);
  font-family: "Product Sans Bold", sans-serif;
  height: calc(56px + env(safe-area-inset-top));
  line-height: 56px;
  padding: env(safe-area-inset-top) 0 0 0;
  transition: all 0.375s calc(1.6s + var(--delay)) cubic-bezier(0.145, 0.865, 0.57, 0.94);
  /* font-family: 'Baloo Bhai', sans-serif; */
}

@media only screen and (min-width: 601px) {
  nav,
nav .nav-wrapper i,
nav a.sidenav-trigger,
nav a.sidenav-trigger i {
    line-height: 64px;
    height: calc(64px + env(safe-area-inset-top));
  }
}
nav .nav-wrapper {
  background: linear-gradient(90deg, #3498db, #8e44ad);
}

nav .nav-wrapper ul li {
  display: flex;
}

nav .nav-wrapper ul li a {
  font-size: 24px;
  padding: 0 22px;
}

nav .nav-wrapper ul li a:hover {
  background: rgba(255, 255, 255, 0.1450980392);
}

nav .sidenav-trigger {
  transform: translateX(-16px);
  padding: 0 16px;
  transition: all 0.2s;
}

nav .sidenav-trigger:hover {
  background: rgba(255, 255, 255, 0.1450980392);
}

.navbar-fixed {
  height: calc(56px + env(safe-area-inset-top));
}

@media only screen and (min-width: 601px) {
  .navbar-fixed {
    height: calc(64px + env(safe-area-inset-top));
  }
}
.sidenav a {
  transition: all 0.2s;
}

.top-button {
  position: fixed;
  bottom: 4vh;
  right: 4vh;
}

.brand-logo {
  padding: 0 32px !important;
  transition: all 0.2s;
}

.brand-logo:hover {
  background: rgba(255, 255, 255, 0.1450980392);
}

.intro {
  padding-top: 30vh;
  transform: translateY(-64px);
  width: 100%;
  min-height: 120vh;
  background: linear-gradient(90deg, #3498db, #8e44ad);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9vw), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9vw), 0 100%);
}

#particles-js {
  opacity: 0;
  position: absolute;
  transform: translateY(-30vh);
  right: 0;
  left: 0;
  height: 100%;
  z-index: 1;
}

#particles-js.animated {
  -webkit-animation: show 1s calc(5s + var(--delay));
          animation: show 1s calc(5s + var(--delay));
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#particles-js canvas {
  position: absolute;
  top: 0;
  overflow: hidden;
  height: 100vmax !important;
  z-index: 0;
}

.intro-photo-and-text {
  padding: 0 10%;
  min-height: 64vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform: translateY(-10vh);
}

/* Animatins */
@-webkit-keyframes photo-holder-grow {
  100% {
    height: 230px;
    width: 230px;
  }
}
@keyframes photo-holder-grow {
  100% {
    height: 230px;
    width: 230px;
  }
}
@-webkit-keyframes photo-grow {
  100% {
    height: 200px;
    width: 200px;
  }
}
@keyframes photo-grow {
  100% {
    height: 200px;
    width: 200px;
  }
}
@-webkit-keyframes intro-text-1-grow {
  100% {
    font-size: 1.6em;
  }
}
@keyframes intro-text-1-grow {
  100% {
    font-size: 1.6em;
  }
}
@-webkit-keyframes intro-text-2-grow {
  100% {
    font-size: 1em;
  }
}
@keyframes intro-text-2-grow {
  100% {
    font-size: 1em;
  }
}
@-webkit-keyframes appear {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    min-width: 30%;
  }
}
@keyframes appear {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    min-width: 30%;
  }
}
@media all and (min-width: 721px) {
  @-webkit-keyframes appear {
    0% {
      opacity: 0;
      flex-basis: 0%;
    }
    50% {
      opacity: 0;
      flex-basis: 50%;
    }
    100% {
      opacity: 1;
      flex-basis: 50%;
      min-width: 30%;
    }
  }
  @keyframes appear {
    0% {
      opacity: 0;
      flex-basis: 0%;
    }
    50% {
      opacity: 0;
      flex-basis: 50%;
    }
    100% {
      opacity: 1;
      flex-basis: 50%;
      min-width: 30%;
    }
  }
}
@-webkit-keyframes show {
  100% {
    opacity: 1;
  }
}
@keyframes show {
  100% {
    opacity: 1;
  }
}
.intro-photo-side {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
}

.photo-holder-container {
  height: 240px;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-holder {
  z-index: 1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  height: 0px;
  width: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-holder.animated {
  -webkit-animation: photo-holder-grow 0.5s calc(1.85s + var(--delay));
          animation: photo-holder-grow 0.5s calc(1.85s + var(--delay));
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.joon-photo {
  width: 0px;
  height: 0px;
  border-radius: 50%;
}

.joon-photo.animated {
  -webkit-animation: photo-grow 0.5s calc(2.1s + var(--delay));
          animation: photo-grow 0.5s calc(2.1s + var(--delay));
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.intro-description {
  opacity: 0;
  text-align: center;
  padding: 16px 0;
  /* font-family: 'Quicksand', sans-serif; */
  color: #fff;
  flex-basis: 0%;
}

.intro-description.animated {
  -webkit-animation: appear 1.75s calc(2.75s + var(--delay));
          animation: appear 1.75s calc(2.75s + var(--delay));
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.intro-text-1 {
  font-size: 1rem;
}

.intro-text-1.animated {
  -webkit-animation: intro-text-1-grow 0.75s calc(2.75s + var(--delay));
          animation: intro-text-1-grow 0.75s calc(2.75s + var(--delay));
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.intro-text-2 {
  font-size: 1rem;
}

.intro-text-2.animated {
  -webkit-animation: intro-text-2-grow 0.75s calc(2.75s + var(--delay));
          animation: intro-text-2-grow 0.75s calc(2.75s + var(--delay));
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media all and (max-width: 720px) {
  .intro-description {
    flex-basis: 100%;
  }
}
.js-holder {
  display: inline-block;
  background-color: rgb(247, 224, 24);
  margin: 1rem;
}

.js-holder.animated {
  -webkit-animation: jsholder 2s 4s forwards;
          animation: jsholder 2s 4s forwards;
}

.js-text {
  text-align: left;
  display: inline-block;
  color: #000;
  font-weight: 800;
  padding: 3rem 3rem 0 3rem;
  width: 6.4rem;
}

.js-text.animated {
  -webkit-animation: jstext 2s 4s forwards;
          animation: jstext 2s 4s forwards;
}

@-webkit-keyframes jsholder {
  50% {
    margin: 1rem;
    background-color: rgb(247, 224, 24);
  }
  100% {
    margin: 0;
    background-color: transparent;
  }
}

@keyframes jsholder {
  50% {
    margin: 1rem;
    background-color: rgb(247, 224, 24);
  }
  100% {
    margin: 0;
    background-color: transparent;
  }
}
@-webkit-keyframes jstext {
  50% {
    color: #000;
    font-weight: 800;
    padding: 3rem 1rem 0 3rem;
    width: 6.4rem;
  }
  100% {
    color: #fff;
    font-weight: normal;
    padding: 0;
    width: 15rem;
  }
}
@keyframes jstext {
  50% {
    color: #000;
    font-weight: 800;
    padding: 3rem 1rem 0 3rem;
    width: 6.4rem;
  }
  100% {
    color: #fff;
    font-weight: normal;
    padding: 0;
    width: 15rem;
  }
}
@media only screen and (max-width: 601px) {
  .js-text {
    width: 4.7rem;
    padding: 2.5rem 1rem 0 2.5rem;
  }
  @-webkit-keyframes jstext {
    50% {
      color: #000;
      font-weight: 800;
      padding: 2.5rem 1rem 0 2.5rem;
      width: 4.7rem;
    }
    100% {
      color: #fff;
      font-weight: normal;
      padding: 0;
      width: 12rem;
    }
  }
  @keyframes jstext {
    50% {
      color: #000;
      font-weight: 800;
      padding: 2.5rem 1rem 0 2.5rem;
      width: 4.7rem;
    }
    100% {
      color: #fff;
      font-weight: normal;
      padding: 0;
      width: 12rem;
    }
  }
}
.button-holder {
  opacity: 0;
}

.button-holder.animated {
  -webkit-animation: appear 1s calc(3.5s + var(--delay));
          animation: appear 1s calc(3.5s + var(--delay));
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.button-holder a:hover {
  background: rgba(255, 255, 255, 0.1450980392);
}

.projects-card-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.projects-card-link a {
  margin: 4px;
}

.col {
  transition: all 0.2s;
}

.container {
  transition: all 0.2s;
}

.card-content h5 {
  margin-top: 0;
}

.section-heading {
  font-size: 2.25em;
  padding: 0.125em 0.25em;
  border-bottom: 0.06em solid #000;
}

.section-follow {
  margin: 10vh 0;
  background: linear-gradient(90deg, #3498db, #8e44ad);
  transform: skewY(2deg);
}

.section-follow .container {
  transform: skewY(-2deg);
}

.section-follow .fa-4x {
  padding: 10px 10px;
  transition: all 0.2s;
  border-radius: 12px;
  margin: 0 4px;
}

.youtube-link:hover {
  color: #ff0000;
  background: #fff;
}

.github-link:hover {
  color: #333;
  background: #fff;
}

.gmail-link:hover {
  color: #0072c6;
  background: #fff;
}

.find-me-link-holder {
  display: flex;
  justify-content: center;
}

.find-me-link {
  margin: 0 0.8rem;
  display: flex;
  flex-direction: column;
}

#contact {
  margin-bottom: 10vh;
}

#contact .card-panel p {
  margin: 0;
}

.page-footer {
  background: transparent;
}

.footer-copyright {
  background: linear-gradient(90deg, #3498db, #8e44ad);
}

.page-footer .footer-copyright {
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-flex > * {
  margin: 8px;
  color: #fff;
}

video {
  width: 100%;
}/*# sourceMappingURL=styles.css.map */