@import url("https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Cateneo BT";
  src: url("../assets/fonts/CataneoBT-Regular.woff2") format("woff2"), url("../assets/fonts/CataneoBT-Regular.woff") format("woff"), url("../assets/fonts/CataneoBT-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --ft-default: "Barlow", sans-serif;
  --ft-condensed: "Barlow Condensed", sans-serif;
  --ft-serif: "Castoro", serif;
  --dark-accent: #5A5A5A;
  --dark: #252525;
  --light: #E4E4E4;
  --white: #fcfcfc;
  --black: #050505;
  --primary: #B1C3D3;
  --hover: #528ec2;
  --success: #6DE28E;
  --sorta-grey: #707070;
  --taubmans-light-bulb: #ffbb73;
  --success-hover: #1e9b41;
}

html {
  scroll-behavior: smooth;
  padding-top: env(safe-area-inset-top);
}

body {
  font-family: var(--ft-default);
  margin-bottom: env(safe-area-inset-bottom);
}
body div::-moz-selection, body i::-moz-selection, body strong::-moz-selection, body span::-moz-selection, body a::-moz-selection, body li::-moz-selection {
  background-color: var(--taubmans-light-bulb); /* Background color of the selection */
  color: #000; /* Text color of the selection */
}
body div::selection, body i::selection, body strong::selection, body span::selection, body a::selection, body li::selection {
  background-color: var(--taubmans-light-bulb); /* Background color of the selection */
  color: #000; /* Text color of the selection */
}

.font-condensed {
  font-family: var(--ft-condensed);
}

.font-serif {
  font-family: var(--ft-serif);
}

.font-monospace {
  font-family: monospace;
}

.sans-bd {
  font-size: 100%;
  opacity: 80%;
  font-weight: 300;
}

.serif-cap {
  font-family: var(--ft-serif);
  font-size: 110%;
  opacity: 80%;
  font-weight: 400;
}

.serif-cap-ital {
  font-family: var(--ft-default);
  font-size: 110%;
  opacity: 80%;
  font-style: italic;
  font-weight: 400;
}

.serif-body-ital {
  font-family: var(--ft-default);
  font-size: 100%;
  opacity: 80%;
  font-style: italic;
  font-weight: 300;
}

.font-cateneo {
  font-family: "Cateneo BT", serif;
}

.sans-cap {
  font-size: 110%;
  opacity: 80%;
  font-weight: 300;
}

.title {
  font-size: 120%;
  opacity: 95%;
  font-weight: 500;
}

.subtitle {
  font-size: 115%;
  opacity: 95%;
  font-weight: 500;
}

.hero {
  font-size: 200%;
  font-weight: 600;
}

.muted {
  font-size: 70%;
  opacity: 50%;
  font-weight: 150;
}

/* THEMES */
.light {
  background-color: var(--light);
  color: var(--black);
  transition: background-color 50ms linear;
  -moz-transition: background-color 50ms linear;
}

.dark {
  background-color: var(--dark);
  color: var(--white);
  transition: background-color 50ms linear;
  -moz-transition: background-color 50ms linear;
}

.not-a-link {
  color: inherit;
}

.not-a-link:hover {
  color: inherit;
}

#skills {
  padding: 5% 0;
}
#skills .title {
  margin-bottom: 24px;
}

.skillset {
  margin: auto;
}
.skillset .pill {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--primary);
  color: var(--black);
  width: 90%;
  padding: 8px;
  box-sizing: border-box;
  height: 48px;
  font-size: 14px;
  border-radius: 24px;
}
.skillset .pill i {
  margin-right: 10px;
}

.timeline-container {
  padding-top: 100px;
  padding-bottom: 42px;
  display: flex;
  max-width: 100%;
  flex-direction: column;
  margin: 0;
}
.timeline-container .title {
  margin: 24px auto;
}

.timeline {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.timeline .lines {
  margin-left: 40px;
  margin-top: 6px;
}
.timeline .lines .dot {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 7px;
  cursor: pointer;
}
.timeline .lines .dot:hover {
  outline-offset: 1px;
  outline: 1px solid var(--hover);
}
.timeline .lines .line {
  height: 103px;
  width: 2px;
  background: var(--primary);
  margin-left: 5.3px;
}
.timeline .lines .dashed {
  height: 103px;
  width: 2px;
  background: transparent;
  border: 1px dashed var(--primary);
  margin-left: 5.3px;
}
.timeline .timeline-cards {
  margin-left: 24px;
  transform: translateY(-10px);
}
.timeline .timeline-cards .timeline-card {
  width: 300px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px;
  box-sizing: border-box;
  color: var(--black);
  background: var(--primary);
  box-shadow: 0px 16px 15px -10px rgba(105, 96, 215, 0.0944602);
  margin-bottom: 10px;
  border-radius: 10px;
}
.timeline .timeline-cards .spacer-42 {
  height: 42px;
}
.timeline .timeline-cards .spacer-24 {
  height: 24px;
}
.timeline .timeline-cards .hire {
  cursor: pointer;
  font-weight: 500;
}
.timeline .timeline-cards .hire:hover {
  color: white;
  background-color: var(--hover);
}

#hello_card {
  min-height: 100vh;
}

.hello-card {
  width: 50%;
  height: 28.125vw;
  margin: auto;
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  background: var(--light);
  color: black;
  padding: 2rem;
  gap: 20px;
  transform: rotateX(0deg);
  transition: transform 100ms ease;
  animation: revealRotate 800ms ease-out 1;
}
.hello-card .name {
  font-size: 200%;
  font-weight: 700;
}
.hello-card .hello_logo {
  width: 70%;
}

.centered {
  text-align: center;
}

.fullscreen {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.fullscreen.fit {
  height: 100%;
}
.fullscreen .hyperlink {
  color: inherit;
  text-decoration: none;
}
.fullscreen .hyperlink:hover {
  text-decoration: underline;
}

.strict-fullscreen {
  height: 100vh !important;
}

.grid {
  display: grid;
  place-content: center;
  gap: 10px;
}

.grid-4-auto {
  grid-template-columns: 25% 25% 25% 25%;
}

.grid-3-auto {
  grid-template-columns: 33.33% 33.33% 33.33%;
}

.grid-2-auto {
  grid-template-columns: 50% 50%;
}

.grid-8-auto {
  grid-template-columns: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%;
}

.navbar {
  padding: 0 5%;
  z-index: 5;
}

.form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.form input {
  border: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 10px;
  width: 400px;
  height: 42px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}
.form input:focus {
  outline: 1px solid var(--hover);
}
.form textarea {
  border: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 10px;
  width: 400px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin-top: 10px;
}
.form textarea:focus {
  outline: 1px solid var(--hover);
}
.form .button {
  padding: 5px;
}

.dark .form input, .dark .form textarea {
  background: rgba(255, 255, 255, 0.3);
}
.dark .form input:focus, .dark .form textarea:focus {
  background: rgba(255, 255, 255, 0.7);
  color: var(--black);
}

.light .navbar {
  background-color: var(--light);
}

.dark .navbar {
  background-color: var(--dark);
}

.footer {
  font-family: var(--ft-condensed);
  font-size: 16px;
  opacity: 0.5;
  position: relative;
  bottom: 0;
  padding: 10px;
  margin: 0;
  background: var(--black);
  color: var(--white);
}

.button {
  cursor: pointer;
  color: inherit;
  padding: 0.5%;
  text-decoration: none;
  font-family: var(--ft-condensed);
  font-size: 120%;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}

.button:hover {
  color: var(--hover);
}

.button-success {
  color: var(--black);
  background-color: var(--success);
}

.button-success:hover {
  color: var(--white);
  background-color: var(--success-hover);
}

.light .button-outlined {
  box-sizing: border-box;
  box-shadow: 0px 0px 0px 3px var(--black) inset;
}

.dark .button-outlined {
  box-sizing: border-box;
  box-shadow: 0px 0px 0px 3px var(--white) inset;
}

.button-outlined:hover {
  box-shadow: 0px 0px 0px 3px var(--hover) inset;
}

.icon {
  margin: 10px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: var(--primary);
  color: black;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.icon:hover {
  background-color: var(--hover);
  color: white;
}

.screenshot {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#themeSelector {
  cursor: pointer;
  position: fixed;
  color: var(--primary);
  background-color: var(--dark-accent);
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border-radius: 20px;
  bottom: 3%;
  right: 3%;
  z-index: 3;
}

#themeSelector:hover {
  color: var(--taubmans-light-bulb);
}

.theme-container {
  display: none;
}

.inline {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.txt-primary {
  color: var(--hover);
}

.dashed-line {
  border-bottom: 3px dashed var(--sorta-grey);
  width: 80%;
  margin: 0 auto;
}

.avatar {
  background-image: url("../assets/logo-avatar.png");
  background-size: contain;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-size: cover;
  cursor: pointer;
  display: grid;
  place-content: center;
}

.info_narrow {
  width: 50%;
  text-align: center;
  cursor: text;
}

.flexer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero-btn {
  margin: 0 10px;
}

.back-button {
  position: absolute;
  left: 42px;
}

.custom-nav-theme {
  background-color: transparent;
  height: 100px;
}

.custom-nav-theme .nav-link {
  color: inherit !important;
  background: linear-gradient(to right, var(--hover) 0 50%, transparent 50% 100%);
  background-size: 250% 100%;
  background-position: 99% 50%;
  transition: 300ms ease-in-out all;
}

.custom-nav-theme .nav-link:hover {
  box-shadow: inset 0 -3.25em 0 0 var(--hover);
  color: var(--light) !important;
  transition: 300ms ease-in-out all;
}

.active {
  background-color: var(--sorta-grey) !important;
}

.cardboard {
  cursor: pointer;
  border-radius: 1px;
  padding: 4%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  margin: 10px;
  background-size: contain;
}
.cardboard .title {
  margin-bottom: 4px;
}
.cardboard .sans-body {
  margin-bottom: 8px;
}
.cardboard.parallax {
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.cardboard.parallax img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: contrast(203%);
  filter: saturate(0.3);
}
.cardboard.parallax img:hover {
  filter: saturate(0.8);
}
.cardboard.parallax .title {
  position: relative;
  bottom: 24px;
  left: 24px;
}
.cardboard#vfx-cb {
  background-color: rgba(79, 118, 142, 0.5);
}
.cardboard#renders-cb {
  background-color: rgba(62, 114, 114, 0.5);
}
.cardboard#music-cb {
  background-color: rgba(102, 122, 160, 0.5);
}

.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.arrow-down {
  display: none;
}

.light .cardboard {
  background-color: #EFEFEF;
}

.dark .cardboard {
  background-color: #4c4c4c;
}

.project {
  background-color: inherit;
}
.project .hyperlink {
  text-decoration: underline;
  font-weight: 500;
  color: var(--success-hover);
}
.project .hyperlink:hover {
  color: var(--hover);
}
.project#deliver .project-details {
  padding: 180px;
}
.project#deliver .serif-cap-ital {
  color: var(--success-hover);
}
.project#deliver .embed-figma, .project#deliver .embed-youtube {
  width: 100%;
  min-height: 400px;
  margin: 20px 0px;
}
.project#deliver #links {
  justify-content: center;
  margin: 10px 0px;
}
.project#deliver #links .button {
  margin: 10px;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .project#deliver .project-details {
    padding: 20px;
  }
  .project#deliver .embed-figma {
    height: 300px;
  }
}

.project .grid {
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .project .grid {
    width: 100%;
  }
}

.project-info {
  text-align: left;
  display: flex;
  gap: 20px;
  flex-direction: column;
  z-index: 2;
  background-color: inherit;
  width: 70%;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
}
.project-info .serif-cap {
  max-width: 400px;
  min-width: 100%;
}
.project-info .read-more {
  cursor: pointer;
  padding: 10px;
  margin: auto;
  color: inherit;
}
.project-info .read-more i {
  animation: spin-caret 1800ms ease-in-out infinite;
}
.project-info .read-more i:first-child {
  margin-right: 10px;
}
.project-info .read-more i:last-child {
  margin-left: 10px;
}
.project-info .read-more:hover {
  font-weight: 500;
  color: var(--hover);
}
.project-info .read-more:hover i {
  animation: none;
}
@keyframes spin-caret {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
.project-info .button {
  padding: 10px;
  box-sizing: border-box;
  font-size: 18px;
}
.project-info .problem-statement {
  color: var(--success-hover);
  font-size: 115%;
  font-weight: 500;
  font-family: var(--ft-serif);
  font-style: italic;
}
.project-info #links {
  justify-content: start;
  margin: 10px 0px;
}
@media screen and (max-width: 1000px) {
  .project-info {
    padding: 20px;
    width: 100%;
    gap: 10px;
    margin-top: 100px;
  }
}

.project-cover {
  position: fixed;
  top: 0;
  background-size: cover;
  width: 100vw;
  height: 400px;
  background-repeat: no-repeat;
}
.project-cover#fabfolio {
  background-image: url("../assets/covers/projects/fabfolio.png");
  background-position: center;
}
.project-cover#netflix {
  background-image: url("../assets/covers/projects/netflix.png");
}
.project-cover#steam {
  background-image: url("../assets/covers/projects/steam.png");
}
.project-cover#vaxico {
  background-image: url("../assets/covers/projects/vaxico.png");
}
.project-cover#minecraft {
  background-image: url("../assets/covers/projects/minecraft.png");
}
@media screen and (max-width: 1000px) {
  .project-cover {
    height: 200px;
  }
}

.project-details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  border-radius: 4px;
  padding: 40px;
  box-sizing: border-box;
  z-index: 2;
  background-color: inherit;
  height: 100%;
}
.project-details .button {
  margin: 10px 0px;
  padding: 10px;
  box-sizing: border-box;
}
.project-details .grid {
  width: 100%;
  align-items: center;
}
.project-details .cover-image {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media screen and (max-width: 820px) {
  .project-details .cover-image {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .project-details {
    padding: 20px;
  }
}
.project-details .diagram {
  width: 100%;
}
.project-details .screenshot {
  width: 100%;
}
.project-details .details {
  box-sizing: border-box;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-details .details ul > li {
  list-style-position: inside;
  list-style-type: square;
}

.light .animated-bg {
  background-image: radial-gradient(rgba(50, 50, 50, 0.3) 0.75px, var(--light) 0.1px);
  background-size: 10px 10px;
  background-blend-mode: overlay;
  animation: wave 3s ease-in-out;
}
.light .animated-bg .info_narrow, .light .animated-bg .info_title, .light .animated-bg .info_subtitle {
  display: inline;
  background: var(--light);
  opacity: 0.8;
}

.dark .animated-bg {
  background-image: radial-gradient(rgba(200, 200, 200, 0.3) 0.75px, var(--dark) 0.1px);
  background-size: 10px 10px;
  background-blend-mode: overlay;
  animation: wave 3s ease-in-out;
}
.dark .animated-bg .info_narrow, .dark .animated-bg .info_title, .dark .animated-bg .info_subtitle {
  display: inline;
  background: var(--dark);
  opacity: 0.8;
}

@keyframes wave {
  from {
    background-position: 0 0, 0px 0px;
  }
  to {
    background-position: 100px 100px, 10px 10px;
  }
}
@keyframes revealRotate {
  from {
    transform: rotateX(90deg);
  }
  to {
    transform: rotateX(0deg);
  }
}
.loading-animation {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.light .loading-animation {
  background-color: var(--light);
}

.dark .loading-animation {
  background-color: var(--dark);
}

.logo {
  display: flex;
  background: url(../assets/logo_onscreen.svg) no-repeat;
  background-size: contain;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 200px;
}

.loader {
  width: 200px;
  height: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--sorta-grey);
  display: flex;
  padding: 4px;
  box-sizing: border-box;
  align-items: center;
}
.loader .bar {
  background: var(--primary);
  position: relative;
  width: 0px;
  height: 4px;
  animation: loader 1000ms infinite linear;
}

@keyframes loader {
  25% {
    left: 0%;
    width: 50px;
  }
  50% {
    left: 50%;
    width: 50px;
  }
  100% {
    left: 100%;
    width: 0px;
  }
}
.light .loader {
  border-color: var(--dark);
  background: var(--dark);
}

.dark .loader {
  background: var(--dark-accent);
  border-color: var(--light);
}

.error_image {
  width: 300px;
}

noscript {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 1em;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  bottom: 8em;
  z-index: 100;
  word-wrap: break-word;
}

.nft {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: none;
  padding: none;
  padding-top: 10em;
}

#nftList {
  display: grid;
  grid-template-columns: 50% 50%;
}
#nftList .nftcard {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  width: calc(20vw + 8px);
  border-radius: 0.4em;
  margin-bottom: 20px;
}
#nftList .nftcard:focus {
  border: 1px solid var(--primary);
}
#nftList .nftcard h2 {
  font-size: 140%;
}
#nftList .nftcard img {
  width: 20vw;
  height: 20vw;
  border-radius: 10px;
}
#nftList .nftcard a.button {
  margin: 0;
  padding: 0.1em 0.4em;
}

@media screen and (max-width: 1400px) and (min-width: 820px) {
  .skillset .pill {
    font-size: 11px;
  }
  #about, #work, #other-work {
    gap: 0px;
  }
  #contact {
    height: -moz-fit-content !important;
    height: fit-content !important;
    padding: 20% 10%;
  }
  #mob-nav {
    display: none;
  }
  .cardboard.project .sans-body {
    font-size: 80% !important;
  }
  .mobile-only {
    display: none;
  }
}
.learn {
  cursor: help;
}

@media screen and (max-width: 820px) {
  .navbar {
    padding: 0%;
  }
  .fullscreen {
    height: unset;
  }
  #contact {
    height: -moz-fit-content !important;
    height: fit-content !important;
    padding: 20% 10%;
  }
  .cardboard:hover, .cardboard:focus {
    outline-offset: 4px;
    outline: 1px solid var(--hover);
  }
  .cardboard.parallax img {
    filter: saturate(0.8);
  }
  .cardboard.project .sans-body {
    font-size: 80%;
  }
  .navlinks {
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--hover);
    list-style: none;
    width: 100%;
    height: 100vh;
    z-index: 3;
    clip-path: circle(25px at calc(100% - 50px) calc(100% - 50px));
    -webkit-clip-path: circle(25px at calc(100% - 50px) calc(100% - 50px));
    transition: all 500ms ease-in-out;
  }
  .navlinks.open {
    clip-path: circle(200% at calc(100% - 50px) calc(100% - 50px));
    -webkit-clip-path: circle(200% at calc(100% - 50px) calc(100% - 50px));
  }
  .navlinks li a {
    text-decoration: none;
    color: white;
    font-family: var(--ft-condensed);
    font-size: 150%;
    font-weight: 300;
  }
  .navlinks li {
    margin: 1.25% auto;
  }
  .burger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 4;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--primary);
  }
  .burger .burger-line {
    width: 20px;
    height: 3px;
    border-radius: 1px;
    background-color: var(--dark-accent);
    transition: all 300ms ease;
  }
  .burger:hover {
    border: 3px solid var(--dark-accent);
  }
  .burger .burger-line::before,
  .burger .burger-line::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 3px;
    border-radius: 1px;
    background-color: var(--dark-accent);
    transition: all 300ms ease;
  }
  .burger .burger-line::before {
    transform: translateY(-8px);
  }
  .burger .burger-line::after {
    transform: translateY(8px);
  }
  .burger.open-stack .burger-line {
    transform: translateX(-25px);
    background: transparent;
  }
  .burger.open-stack .burger-line::before {
    transform: rotate(45deg) translate(18px, -18px);
  }
  .burger.open-stack .burger-line::after {
    transform: rotate(-45deg) translate(18px, 18px);
  }
  .button {
    padding: 3%;
  }
  .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50px;
  }
  .grid-4-auto, .grid-3-auto, .grid-2-auto {
    grid-template-columns: 100%;
  }
  .grid-8-auto {
    grid-template-columns: 50% 50%;
  }
  .grid-8-auto div {
    margin-bottom: 10px;
  }
  .info_narrow {
    width: 90%;
  }
  .desktop-only {
    display: none;
  }
  #themeSelector {
    display: none;
  }
  .timeline-container {
    padding-top: 10px;
  }
  .skillset {
    width: 80%;
    margin: auto;
  }
  .switch {
    --line: var(--dark);
    --dot: var(--light);
    --circle: var(--primary);
    --duration: 240ms;
    --text: #9EA0BE;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .switch input {
    display: none;
  }
  .switch input + div {
    position: relative;
  }
  .switch input + div:before, .switch input + div:after {
    --s: 1;
    content: "";
    position: absolute;
    height: 4px;
    top: 10px;
    width: 24px;
    background: var(--line);
    transform: scaleX(var(--s));
    transition: transform var(--duration) ease;
  }
  .switch input + div:before {
    --s: 0;
    left: 0;
    transform-origin: 0 50%;
    border-radius: 2px 0 0 2px;
  }
  .switch input + div:after {
    left: 28px;
    transform-origin: 100% 50%;
    border-radius: 0 2px 2px 0;
  }
  .switch input + div span {
    padding-left: 56px;
    line-height: 24px;
    color: var(--text);
  }
  .switch input + div span:before {
    --x: 0;
    --b: var(--circle);
    --s: 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 var(--s) var(--b);
    transform: translateX(var(--x));
    transition: box-shadow var(--duration) ease, transform var(--duration) ease;
  }
  .switch input + div span:not(:empty) {
    padding-left: 64px;
  }
  .switch input:checked + div:before {
    --s: 1;
  }
  .switch input:checked + div:after {
    --s: 0;
  }
  .switch input:checked + div span:before {
    --x: 28px;
    --s: 12px;
    --b: var(--dot);
  }
  .switch-icon-label {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .switch-icon-label i {
    color: var(--white);
  }
  .nft {
    padding-top: 20px;
  }
  #nftList {
    grid-template-columns: 100%;
  }
  #nftList .nftcard {
    width: calc(80vw + 8px);
    margin-bottom: 40px;
  }
  #nftList .nftcard img {
    width: 80vw;
    height: 80vw;
  }
  .hello-card {
    width: 90%;
    height: 50.625vw;
    font-size: 70%;
  }
  .hello-card .name {
    font-size: 200%;
  }
  .hello-card .hero_logo {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .hero {
    font-size: 150%;
  }
  .title {
    font-size: 120%;
  }
  .subtitle {
    font-size: 113%;
  }
  .sans-bd {
    font-size: 90%;
  }
  input, textarea {
    width: 100% !important;
  }
}
@media screen and (min-width: 1001px) {
  body {
    cursor: default;
  }
  .navbar .nav-link, .avatar, .icon, .button, .cardboard, .no-def-cursor {
    cursor: none;
  }
  .zoom-in {
    transform: scale(1);
    transition: transform 300ms ease;
  }
  .zoom-in:hover {
    transform: scale(1.1);
  }
  #about, #other-work {
    gap: 10px;
  }
  #other-work {
    height: -moz-fit-content;
    height: fit-content;
  }
  *::-webkit-scrollbar {
    position: fixed;
    right: 0;
    width: 8px;
  }
  *::-webkit-scrollbar:hover {
    width: 10px;
  }
  *::-webkit-scrollbar-track {
    background: rgba(158, 160, 190, 0.1);
  }
  *::-webkit-scrollbar-thumb {
    width: 8px;
    background-color: var(--hover);
    border-radius: 4px;
    cursor: pointer;
  }
  *::-webkit-scrollbar-thumb:hover {
    border: 1px solid var(--primary);
  }
  .custom-cursor {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    left: 10px;
    top: 10px;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background-color: white;
    mix-blend-mode: difference;
    border-radius: 50%;
    pointer-events: none;
    transition: width 500ms, height 500ms;
    outline-offset: 0px;
  }
  .custom-cursor .arrow-down {
    display: none;
    opacity: 0;
    width: 0%;
    transition: all 800ms ease;
    margin: auto;
  }
  .dark .arrow-down {
    color: black;
  }
  .cursor-grow {
    width: 30px;
    height: 30px;
    transition: width 500ms, height 500ms, outline-offset 500ms;
  }
  .cursor-down-arrow {
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    transition: width 500ms, height 500ms, outline-offset 500ms;
  }
  .cursor-down-arrow .arrow-down {
    display: block;
    position: relative;
    margin: auto;
    opacity: 1;
    width: auto;
    transition: all 800ms ease;
  }
  .avatar {
    transform: rotateY(0deg);
    outline-offset: 0px;
    transition: transform 500ms ease-out, outline-offset 500ms linear;
  }
  .mx-auto:hover .avatar {
    margin: auto;
    transform: rotateY(360deg);
    outline: 1px solid var(--primary);
    outline-offset: 4px;
  }
  .avataricon {
    display: none;
    margin: auto;
    z-index: 3;
  }
  .avatar:hover .avataricon {
    display: block;
    filter: blur(0);
    color: var(--white);
    font-size: 14px;
    font-style: var(--ft-condensed);
  }
  .mobile-only {
    display: none;
  }
  .button-outlined, .form .button-outlined {
    background: linear-gradient(to right, var(--hover) 0 50%, transparent 50% 100%);
    color: inherit;
    box-shadow: 0px 0px 0px 3px var(--black) inset;
    background-size: 250% 100%;
    background-position: 100% 50%;
    transition: 300ms all;
  }
  .button-outlined:hover {
    color: var(--white);
    background-position: 5% 50%;
    transition: 300ms all;
    box-shadow: 0px 0px 0px 3px var(--hover) inset;
  }
  .button-success {
    background: linear-gradient(to right, var(--success-hover) 0 50%, var(--success) 50% 100%);
    color: var(--black);
    content: attr(data-def);
    background-size: 250% 100%;
    background-position: 100% 50%;
    transition: 300ms all;
  }
  .button-success .fa-google-drive {
    display: static;
    opacity: 0;
    width: 0;
  }
  .button-success:hover {
    color: var(--white);
    background-position: 5% 50%;
    transition: 300ms all;
  }
  .button-success:hover .fa-google-drive {
    opacity: 1;
    width: 20px;
  }
  .button-success:hover::after {
    content: attr(data-hv);
  }
  .icon {
    transition: all 100ms ease;
  }
  .icon:hover {
    width: 150px;
    transition: all 100ms ease;
  }
  .icon-label {
    font-size: 90%;
    font-weight: 500;
    transition: all 100ms ease;
  }
  .icon:hover .icon-label:before {
    margin: 0 10px;
    content: attr(data-label);
    transition: all 100ms ease;
  }
  .dark .form .button-outlined {
    box-shadow: 0px 0px 0px 3px var(--white) inset;
  }
  .dark .form .button-outlined:hover {
    box-shadow: 0px 0px 0px 3px var(--hover) inset;
  }
  .cardboard {
    box-shadow: 10px 10px 5px 5px transparent;
    transition: box-shadow 100ms linear;
  }
  .cardboard.project {
    flex-direction: row;
    padding: 0%;
    border-radius: 1px;
    height: 200px;
    text-overflow: ellipsis;
  }
  .cardboard.project .thumbnail {
    background: rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    width: 50%;
    height: 100%;
    transition: width 100ms linear;
  }
  .cardboard.project .thumbnail.steam {
    background-image: url("../assets/covers/projects/steam.png");
  }
  .cardboard.project .thumbnail.fabfolio {
    background-image: url("../assets/covers/projects/fabfolio.png");
  }
  .cardboard.project .thumbnail.netflix {
    background-image: url("../assets/covers/projects/netflix.png");
  }
  .cardboard.project .thumbnail.vaxico {
    background-image: url("../assets/covers/projects/vaxico.png");
  }
  .cardboard.project .thumbnail.grocero {
    background-image: url("../assets/covers/projects/grocero.png");
  }
  .cardboard.project .thumbnail.axebow-web {
    background-image: url("../assets/covers/projects/axebow-website.png");
  }
  .cardboard.project .thumbnail.pastr {
    background-image: url("../assets/covers/projects/pastr.png");
  }
  .cardboard.project .thumbnail.feedeval {
    background-image: url("../assets/covers/projects/feedeval.png");
    background-position: right;
  }
  .cardboard.project .thumbnail.minecraft {
    background-image: url("../assets/covers/projects/minecraft.png");
  }
  .cardboard.project .content {
    display: flex;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    padding: 4%;
    align-items: flex-start;
    justify-content: space-between;
    margin: 10px;
    background-size: contain;
  }
  .cardboard.project .content .title {
    margin-bottom: 4px;
  }
  .cardboard.project .content .sans-body {
    margin-bottom: 8px;
    font-size: 90%;
  }
  .cardboard.project .content .serif-body-ital {
    margin-top: auto;
  }
  .cardboard.project .meta {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .cardboard.project .meta .title, .cardboard.project .meta .sans-body, .cardboard.project .meta .serif-body-ital {
    margin: 10px;
  }
  .cardboard.project .meta .sans-body {
    font-size: 1em;
  }
  .cardboard.project:hover .thumbnail {
    width: 10%;
  }
  .cardboard.project:hover .content .sans-body {
    font-size: 100%;
  }
  .cardboard.parallax img {
    position: relative;
    transform: scale(1) rotate(0deg);
    transition: transform 300ms ease;
  }
  .cardboard.parallax:hover img {
    transform: scale(1.1) rotate(-5deg);
  }
  .cardboard:hover {
    transform: scale(103%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  }
  .light .cardboard:hover {
    background: #FFFFFF;
  }
  .dark .cardboard:hover {
    background: #5F5F5F;
  }
  .not-visible {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-250px);
    transition: all 800ms ease;
  }
  .visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0px);
  }
}
@media screen and (min-width: 1001px) and (prefers-reduced-motion) {
  .not-visible {
    transition: none;
  }
  .animated-bg {
    animation: none;
  }
}
@media screen and (max-height: 700px) {
  .custom-cursor {
    display: none;
  }
  body {
    cursor: default;
  }
  #about, #contact, #work, #timeline, #hello_card {
    height: -moz-fit-content;
    height: fit-content;
    gap: 4px;
  }
  #about #info {
    width: 90%;
  }
  .skillset {
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */