:root {
  --50: #fafafa;
  --500: #71717b;
  --950: #09090b;
  --200: #e5e5e5;
  --size: 24px;
}

@supports (color: lab(0% 0 0)) {
  :root {
    --50: lab(98.26% -.0000298023 0);
    --500: lab(47.8878% 1.65477 -5.77283);
    --950: lab(2.51107% .242703 -.886115);
  }
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.body {
  background-color: var(--50);
  color: var(--500);
  font-family: Instrument Serif, sans-serif;
  overflow: hidden;
}

.content-container {
  z-index: 2;
  background-color: var(--50);
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 48px;
  display: flex;
  overflow: hidden;
}

.heading {
  z-index: 30;
  color: var(--950);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 64px;
  position: relative;
}

.text-block {
  font-size: 18px;
  line-height: 18px;
}

.bio-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-end;
  align-items: flex-start;
}

.skills-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
}

.carousel-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  flex: none;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  display: flex;
}

.carousel-content.scroll {
  padding-bottom: 2px;
}

.carousel-text {
  white-space: nowrap;
  font-size: 18px;
  line-height: 18px;
}

.carousel {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  pointer-events: none;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.carousel-overlay {
  z-index: 10;
  background-image: linear-gradient(90deg, var(--50), transparent 10%, #0000 90%, var(--50));
  width: 100%;
  height: 20px;
  position: absolute;
}

.contact-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-end;
  align-items: flex-start;
  width: 35%;
}

.dark-badge {
  z-index: 30;
  background-color: var(--950);
  color: var(--50);
  border-radius: 18px;
  padding: 8px 12px;
  font-size: 17px;
  line-height: 18px;
  position: relative;
}

.badge-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  width: 100%;
}

.contact-badge {
  z-index: 30;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--500);
  border-radius: 18px;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 12px;
  font-size: 17px;
  line-height: 18px;
  display: flex;
}

.link {
  color: var(--500);
  text-decoration: none;
}

.link.badge {
  z-index: 30;
  transition: transform .1s cubic-bezier(.39, .575, .565, 1);
  position: relative;
}

.link.badge:hover {
  transform: rotate(4deg)scale(1.05);
}

.call-link {
  color: var(--50);
  margin-left: auto;
  text-decoration: none;
}

.call-link.badge {
  z-index: 30;
  transition: transform .1s cubic-bezier(.39, .575, .565, 1);
  position: relative;
}

.call-link.badge:hover {
  transform: rotate(4deg)scale(1.05);
}

.hover-text-container {
  position: relative;
}

.hover-text {
  color: var(--950);
  text-align: center;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: absolute;
  inset: auto 0% -24px;
}

.hover-circle {
  filter: blur(8px);
  background-color: #000;
  border-radius: 24px;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
}

.hover {
  z-index: 20;
  pointer-events: none;
  mix-blend-mode: overlay;
  position: absolute;
  inset: 0% auto auto 0%;
}

.icon {
  z-index: 30;
  width: 24px;
  height: 24px;
  transition: color .15s;
  position: relative;
}

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

.code {
  display: none;
}

.shader-container {
  z-index: 30;
  flex: 1;
  width: 100%;
  display: flex;
  position: relative;
}

.page-container {
  width: 100%;
  height: 100svh;
}

.shader-overlay {
  z-index: 40;
  background-image: linear-gradient(180deg, transparent, var(--50));
  width: 100%;
  height: 20%;
  position: absolute;
  inset: auto 0% 0%;
}

.shader {
  width: 100%;
  height: 100%;
}

.navbar {
  z-index: 50;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid var(--200);
  background-color: var(--50);
  border-radius: 32px;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 16px;
  position: fixed;
  inset: 24px 24px auto auto;
}

.page-blur {
  z-index: 40;
  opacity: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0%;
}

.navbar-link {
  cursor: pointer;
  transition: opacity .1s cubic-bezier(.39, .575, .565, 1);
}

.navbar-link:hover {
  color: var(--950);
}

.offcanvas {
  z-index: 50;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border: 1px solid var(--200);
  background-color: var(--50);
  opacity: 0;
  border-radius: 8px;
  width: 450px;
  padding: 16px;
  display: none;
  position: fixed;
  inset: 78px 24px auto auto;
}

.offcanvas.oc-who {
  opacity: 100;
  display: flex;
}

.offcanvas-heading {
  color: var(--950);
  font-size: 18px;
  line-height: 24px;
}

.text-block-2 {
  text-align: right;
  width: 100%;
}

.code-embed {
  width: 100%;
}

.reach-out-text {
  margin-top: 8px;
}

.typed-container {
  height: 24px;
}

@media screen and (max-width: 991px) {
  .content-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .bio-container, .contact-container {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .link.badge.gh-link {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .content-container {
    padding: 32px;
  }

  .skills-container, .badge-container {
    flex-flow: wrap;
  }
}


