@font-face {
  font-family: "Heading Bold";
  src: url("font/Heading Black.woff") format("woff"), url("font/Heading Black.otf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Heading Regular";
  src: url("font/Heading regular.woff") format("woff"), url("font/Heading regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-block-start: 0px;
  margin-block-end: 0px;
  background-repeat: no-repeat;
  color: #282623;
}

h1,
h2,
h3 {
  font-family: "Heading Bold", sans-serif;
  line-height: 1;
}

h1 {
  font-size: 5em;
}

h2 {
  font-size: 3em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-family: "Heading Regular", sans-serif;
  font-size: 1.2em;
}

h5,
.btn,
.subtitle {
  font-family: "Gantari", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
}

p,
a,
li,
figcaption {
  font-family: "Gantari", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

a {
  text-decoration: none;
}

ul {
  padding-inline-start: 20px;
}

.caption {
  font-size: 14px;
}

.bold {
  font-weight: 600;
}

div::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

body {
  width: 100%;
  background-color: #F0E7DD;
  position: relative;
  padding: 0;
  margin: 0;
}

footer {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}
footer img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

#snap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
}

.section {
  flex-shrink: 0;
  scroll-snap-align: start;
  height: 100vh;
  width: 90%;
}

#menu {
  background-color: #fff;
  position: fixed;
  z-index: 1000;
  top: 20px;
  left: 20px;
  border-radius: 20px;
  filter: drop-shadow(5px 5px 0 #282623);
  cursor: pointer;
  transition: filter 0.25s;
}
#menu:hover {
  filter: drop-shadow(7px 7px 0 #282623);
}
#menu i {
  font-size: 20px;
  padding: 20px;
  transition: opacity 0.3s ease;
}
#menu #expandedMenu {
  height: 0;
  width: 0;
  overflow: hidden;
  transition: height 0.5s, padding 0.5s, width 0.5s;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#menu #expandedMenu a {
  font-size: 1em;
  padding: 10px;
  cursor: pointer;
  transition: font-weight 0.25s;
}
#menu #expandedMenu a:hover {
  font-weight: 600;
}
#menu:hover i {
  display: none;
}
#menu:hover #expandedMenu {
  display: flex;
  height: auto;
  padding: 20px;
  width: auto;
}

#hero {
  height: 100vh;
  width: 90%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#hero #intro {
  width: fit-content;
  min-width: 300px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 20px;
}
#hero #intro h4 {
  padding-left: 10px;
}
#hero #intro #about {
  line-height: 1.5;
  margin-top: 20px;
}
#hero #intro #roles {
  margin-top: 20px;
}
#hero #intro #roles a {
  display: block;
  line-height: 2;
  cursor: pointer;
  transition: transform 0.25s, font-weight 0.25s;
  transform-origin: 0%;
}
#hero #intro #roles a:hover {
  transform: scale(1.2);
  font-weight: 600;
}
#hero #intro .typing {
  line-height: 0.75;
  display: inline-block;
  height: 4.5rem;
  padding-top: 6px;
  margin-top: 10px;
  width: min-content;
  white-space: nowrap;
  animation: blink 1s step-end infinite;
  padding-right: 10px;
  border-right: 8px solid;
}
#hero #splineWrapper {
  height: 100vh;
  width: 60%;
  min-width: 300px;
}
#hero #logo {
  display: none;
}

#projects,
#research,
#interests,
#contact {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
#projects #projectWrapper,
#research #projectWrapper,
#interests #projectWrapper,
#contact #projectWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  margin: 0 auto;
  justify-content: center;
  max-width: 1200px;
}
#projects #projectWrapper .project,
#research #projectWrapper .project,
#interests #projectWrapper .project,
#contact #projectWrapper .project {
  display: flex;
  flex-direction: column;
  border: 4px solid #282623;
  padding: 30px;
  justify-content: space-between;
  height: 360px;
  width: 300px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s, box-shadow 0.5s;
  cursor: pointer;
}
#projects #projectWrapper .project h3,
#research #projectWrapper .project h3,
#interests #projectWrapper .project h3,
#contact #projectWrapper .project h3 {
  padding-bottom: 10px;
}
#projects #projectWrapper .project .tagline,
#research #projectWrapper .project .tagline,
#interests #projectWrapper .project .tagline,
#contact #projectWrapper .project .tagline {
  width: 50%;
}
#projects #projectWrapper .project .why,
#research #projectWrapper .project .why,
#interests #projectWrapper .project .why,
#contact #projectWrapper .project .why {
  padding: 5px 10px 8px 10px;
  background-color: #282623;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  right: 0;
}
#projects #projectWrapper .project .geoWrapper,
#research #projectWrapper .project .geoWrapper,
#interests #projectWrapper .project .geoWrapper,
#contact #projectWrapper .project .geoWrapper {
  width: 360px;
  height: 360px;
  position: absolute;
  right: -40px;
  top: 0;
}
#projects #projectWrapper .project:hover,
#research #projectWrapper .project:hover,
#interests #projectWrapper .project:hover,
#contact #projectWrapper .project:hover {
  overflow: visible;
  transform: translate(10px, -10px);
  box-shadow: -10px 10px 0 #282623;
}
#projects #projectWrapper #afaik,
#research #projectWrapper #afaik,
#interests #projectWrapper #afaik,
#contact #projectWrapper #afaik {
  background-color: #E2532F;
}
#projects #projectWrapper #AssemblyAI,
#research #projectWrapper #AssemblyAI,
#interests #projectWrapper #AssemblyAI,
#contact #projectWrapper #AssemblyAI {
  background-color: #5E58DC;
}
#projects #projectWrapper #Swiftdine,
#research #projectWrapper #Swiftdine,
#interests #projectWrapper #Swiftdine,
#contact #projectWrapper #Swiftdine {
  background-color: #23B6B8;
}
#projects #projectWrapper #WarmMachine,
#research #projectWrapper #WarmMachine,
#interests #projectWrapper #WarmMachine,
#contact #projectWrapper #WarmMachine {
  background-color: #E8B65E;
}
#projects #projectWrapper #WHIMToday,
#research #projectWrapper #WHIMToday,
#interests #projectWrapper #WHIMToday,
#contact #projectWrapper #WHIMToday {
  background-color: #DBD0C4;
}
#projects #projectWrapper #MUJI,
#research #projectWrapper #MUJI,
#interests #projectWrapper #MUJI,
#contact #projectWrapper #MUJI {
  background-color: #c94d3f;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
#projects {
  height: 100vh;
  width: 100%;
  place-items: center;
}

#research {
  position: relative;
}
#research #researchWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
#research .research {
  width: 50%;
  padding: 40px;
  border: 4px solid #282623;
  background-color: #fff;
  box-shadow: 10px 10px 0 #282623;
  cursor: pointer;
  min-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#research .research h4 {
  margin-top: 20px;
}
#research .research .tag {
  position: absolute;
  top: -14px;
  left: -14px;
  background-color: #282623;
  padding: 5px 10px;
  color: #fff;
  display: inline-block;
}
#research .research .options {
  display: flex;
  gap: 10px;
}
#research .research .option {
  display: inline-block;
  padding: 10px;
  border: 2px solid #282623;
  transition: background-color 0.25s, color 0.25s;
}
#research .research .option i {
  transition: color;
}
#research .research .option:hover {
  background-color: #282623;
  color: #fff;
}
#research .research .option:hover i {
  color: #fff;
}
#research #telescope {
  position: absolute;
  bottom: -40px;
  right: 20px;
  width: 400px;
  height: 400px;
}
#research #stars {
  position: absolute;
  top: 0;
  left: 20px;
  width: 400px;
  height: 400px;
}

#interests {
  width: 100%;
  position: relative;
  overflow: visible;
}
#interests #bg1 {
  position: absolute;
  top: 300px;
  left: -200px;
  width: 400px;
  height: 400px;
}
#interests #bg2 {
  position: absolute;
  top: 450px;
  right: -200px;
  width: 400px;
  height: 400px;
}
#interests #graphWrapper {
  width: 100%;
  position: relative;
}
#interests #graphWrapper #info {
  min-width: 300px;
  width: 30%;
  max-width: 500px;
  max-height: 60vh;
  overflow-y: scroll;
  padding: 20px;
  position: absolute;
  top: -20px;
  left: 20px;
  border: 4px solid #282623;
  box-shadow: 10px 10px 0 #282623;
  line-height: 1.5;
  background-color: #E8B65E;
}
#interests #graphWrapper #info::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}
#interests #graphWrapper #info::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
#interests #graphWrapper #info a {
  text-decoration: underline;
  font-size: inherit;
}
#interests #graphWrapper #info ul {
  margin-bottom: 10px;
}
#interests #graphWrapper #interestGraph {
  width: 90%;
  height: 70vh;
  min-height: 300px;
  min-width: 300px;
  margin: 0 auto;
  background-color: #fff;
  border: 4px solid #282623;
  box-shadow: 20px 20px 0 #282623;
  display: flex;
  justify-content: end;
}
#interests #graphWrapper #interestGraph #d3graph {
  width: 70%;
}
#interests #graphWrapper #interestGraph .node {
  cursor: pointer;
}
#interests #graphWrapper #interestGraph .node .node-circle {
  fill: #fff;
  stroke: #282623;
  stroke-width: 3px;
  transition: all 0.3s ease;
}
#interests #graphWrapper #interestGraph .node text {
  font-family: "Gantari", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
}
#interests #graphWrapper #interestGraph .node:hover .node-circle {
  fill: #DBD0C4 !important;
  stroke: #282623 !important;
}
#interests #graphWrapper #interestGraph .link {
  stroke: #282623;
  stroke-width: 3px;
}

#contact {
  justify-content: space-between;
  padding-bottom: 0;
}
#contact #formWrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contactForm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  background-color: #E8B65E;
  border: 4px solid #282623;
  box-shadow: 20px 20px 0 #282623;
  padding: 20px 20px 20px 80px;
  flex-wrap: wrap;
}
#contactForm #text {
  flex-grow: 1;
}
#contactForm #text h2 {
  line-height: 1.2;
}
#contactForm #text #things {
  border-right: 6px solid;
  animation: blink 1s step-end infinite;
}
#contactForm #text .btn {
  margin-top: 40px;
  padding: 10px 30px 14px 30px;
  background-color: #fff;
  border: 2px solid #282623;
  display: inline-block;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 5px 5px 0 #282623;
  transition: transform 0.25s;
}
#contactForm #text .btn:hover {
  transform: scale(1.1);
}
#contactForm #donut {
  height: 400px;
  width: 400px;
  margin-top: -100px;
}
#contactForm #donut #container {
  width: 600px;
}

.cs {
  display: flex;
  height: 100vh;
}
.cs .navBar {
  padding: 60px 40px;
}
.cs .navBar .fa-arrow-left {
  font-size: 20px;
  padding: 10px;
  transition: background-color 0.25s, padding 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.cs .navBar .fa-arrow-left:hover {
  background-color: #fff;
  padding: 20px;
  box-shadow: 10px 10px 0 #282623;
}
.cs .navBar #index {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs .navBar #index p {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  transition: font-weight 0.25s;
  font-size: 1em;
}
.cs .navBar #index p:hover {
  font-weight: 600;
}
.cs .contentWrapper {
  flex-grow: 1;
  background-color: #fff;
  min-height: 100vh;
  height: 100vh;
  overflow: scroll;
  position: relative;
}
.cs .contentWrapper #progressBar {
  position: sticky;
  height: 10px;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
}
.cs .contentWrapper .content {
  padding: 60px;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
.cs .contentWrapper .content .callout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 4px solid #282623;
  padding-left: 40px;
  box-shadow: 20px 20px 0 #282623;
}
.cs .contentWrapper .content .callout .text {
  padding: 20px 0;
  height: 300px;
}
.cs .contentWrapper .content .callout .text h3 {
  margin-top: 60px;
  margin-bottom: 20px;
}
.cs .contentWrapper .content .callout .text .visit {
  display: inline-block;
  border: 3px solid #282623;
  padding: 16px 20px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  transition: box-shadow 0.25s, transform 0.25s;
}
.cs .contentWrapper .content .callout .text .visit:hover {
  box-shadow: 5px 5px 0 #282623;
  transform: translate(-5px, -5px);
}
.cs .contentWrapper .content .callout .geoWrapper {
  border-left: 4px solid #282623;
  width: 300px;
  height: 300px;
}
.cs .contentWrapper .content #essay {
  max-width: 800px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.cs .contentWrapper .content #essay .chapter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #F0E7DD;
}
.cs .contentWrapper .content #essay .chapter h4 {
  width: 100%;
  margin-bottom: 10px;
  font-size: 22px;
}
.cs .contentWrapper .content #essay .chapter h5 {
  width: 100%;
  margin-top: 20px;
}
.cs .contentWrapper .content #essay .chapter p,
.cs .contentWrapper .content #essay .chapter li {
  width: 100%;
  line-height: 1.5;
  font-size: 18px;
}
.cs .contentWrapper .content #essay .chapter a {
  font-size: 18px;
}
.cs .contentWrapper .content #essay .chapter ul,
.cs .contentWrapper .content #essay .chapter ol {
  width: 100%;
}
.cs .contentWrapper .content #essay .chapter li {
  margin-bottom: 10px;
  font-size: 18px;
}
.cs .contentWrapper .content #essay .chapter a {
  text-decoration: underline;
}
.cs .contentWrapper .content #essay .chapter figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cs .contentWrapper .content #essay .chapter figure img {
  width: 100%;
}
.cs .contentWrapper .content #essay .chapter figure .small {
  max-width: 500px;
}
.cs .contentWrapper .content #essay .chapter figure figcaption {
  font-size: 14px;
  text-align: center;
  opacity: 0.7;
  margin-top: 10px;
  line-height: 1.5;
}
.cs .contentWrapper .content #essay .chapter video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.cs .contentWrapper .content #essay .chapter iframe {
  border-radius: 10px;
  width: 100%;
  height: 600px;
}
.cs .contentWrapper .content #essay .chapter .roll {
  width: 100%;
}
.cs .contentWrapper .content #essay .chapter .roll .imageWrapper {
  max-height: 600px;
  overflow-y: scroll;
}
.cs .contentWrapper .content #essay .chapter .roll img {
  width: 100%;
}
.cs .contentWrapper .content #essay .chapter .roll .caption {
  font-size: 14px;
  text-align: center;
  opacity: 0.7;
  margin-top: 10px;
}
.cs .contentWrapper .content #essay #end {
  margin: 40px 0 20px 0;
  text-align: center;
  opacity: 0.5;
}
.cs .contentWrapper .content #caseNav {
  display: flex;
  justify-content: space-between;
}
.cs .contentWrapper .content #caseNav a {
  padding: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.75;
  transition: opacity 0.25;
}
.cs .contentWrapper .content #caseNav a i {
  transition: transform 0.25s;
  padding: 5px;
}
.cs .contentWrapper .content #caseNav a:hover .fa-arrow-left {
  transform: translateX(-5px);
}
.cs .contentWrapper .content #caseNav a:hover .fa-arrow-right {
  transform: translateX(5px);
}
.cs .contentWrapper .content #caseNav a:hover {
  opacity: 1;
}
.cs .contentWrapper .content #caseNav #prev {
  align-items: flex-start;
}
.cs .contentWrapper .content #caseNav #next {
  align-items: flex-end;
}

.commentWrapper {
  display: inline;
  position: relative;
  cursor: pointer;
  margin-right: 2px;
  z-index: 100;
}
.commentWrapper i {
  opacity: 0.75;
  font-size: 14px;
  transition: opacity 0.25s;
}
.commentWrapper .comment {
  display: none;
  position: absolute;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  box-shadow: 5px 5px 0 #282623;
  border: 2px solid #282623;
  min-width: 200px;
  padding: 10px;
}
.commentWrapper:hover {
  z-index: 1000;
}
.commentWrapper:hover i {
  opacity: 1;
}
.commentWrapper:hover .comment {
  display: initial;
}

#afaikCS #progressBar {
  background-color: #E2532F;
}
#afaikCS .callout .geoWrapper {
  background-color: #E2532F;
}
#afaikCS .callout .geoWrapper .geo {
  transform: translate(-50px);
}
#afaikCS h4 {
  color: #E2532F;
}
#afaikCS h4 * {
  color: #E2532F;
}

#assemblyCS #progressBar {
  background-color: #5E58DC;
}
#assemblyCS .callout .geoWrapper {
  background-color: #5E58DC;
}
#assemblyCS .callout .geoWrapper .geo {
  transform: translate(-60px);
}
#assemblyCS h4 {
  color: #5E58DC;
}
#assemblyCS h4 * {
  color: #5E58DC;
}

#swiftdineCS #progressBar {
  background-color: #23B6B8;
}
#swiftdineCS .callout .geoWrapper {
  background-color: #23B6B8;
}
#swiftdineCS .callout .geoWrapper .geo {
  transform: translate(-60px);
}
#swiftdineCS h4 {
  color: #23B6B8;
}
#swiftdineCS h4 * {
  color: #23B6B8;
}

#WMCS #progressBar {
  background-color: #E8B65E;
}
#WMCS .callout .geoWrapper {
  background-color: #E8B65E;
}
#WMCS .callout .geoWrapper .geo {
  transform: translate(-60px);
}
#WMCS h4 {
  color: #E8B65E;
}
#WMCS h4 * {
  color: #E8B65E;
}

#WHIMCS #progressBar {
  background-color: #DBD0C4;
}
#WHIMCS .callout .geoWrapper {
  background-color: #DBD0C4;
}
#WHIMCS .callout .geoWrapper .geo {
  transform: translate(-60px);
}
#WHIMCS h4 {
  color: #C0AF9D;
}
#WHIMCS h4 * {
  color: #C0AF9D;
}

#MUJICS #progressBar {
  background-color: #c94d3f;
}
#MUJICS .callout .geoWrapper {
  background-color: #c94d3f;
}
#MUJICS .callout .geoWrapper .geo {
  transform: translate(-60px);
}
#MUJICS h4 {
  color: #c94d3f;
}
#MUJICS h4 * {
  color: #c94d3f;
}

#cv {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
}
#cv #namecard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  height: 100%;
  width: 40%;
  padding: 60px;
  max-width: 500px;
  min-width: 300px;
}
#cv #namecard h3 {
  margin-bottom: 10px;
  text-align: center;
}
#cv #namecard img {
  width: 200px;
  object-fit: cover;
  transform: translateX(10px);
  transform-origin: 100px 100px;
  filter: drop-shadow(-5px 5px 0 #282623);
}
#cv #namecard #basicInfo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#cv #namecard #basicInfo p {
  line-height: 1.5;
}
#cv #namecard #basicInfo #icons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
#cv #namecard #basicInfo #icons .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: -3px 3px 0 #282623;
  border: 3px solid #282623;
  transition: transform 0.25s;
}
#cv #namecard #basicInfo #icons .icon:hover {
  transform: scale(1.1);
}
#cv #cvMain {
  display: flex;
  flex-direction: column;
  gap: 80px;
  background-color: #fff;
  padding: 100px;
  width: 60%;
  flex-grow: 1;
  min-width: 300px;
  height: 100vh;
  overflow-y: scroll;
}
#cv #cvMain .CVsection {
  width: 100%;
  max-width: 600px;
}
#cv #cvMain .itemContent {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#cv #cvMain .itemContent .item {
  display: flex;
  gap: 30px;
}
#cv #cvMain .itemContent .item p {
  line-height: 1.5;
}
#cv #cvMain .itemContent .item .time {
  width: 100px;
  flex-shrink: 0;
}
#cv #cvMain .itemContent .item .detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#cv #cvMain .itemContent .item .detail ul li {
  line-height: 1.5;
  font-size: 14px;
}
#cv #cvMain .itemContent .item .detail .tags {
  display: flex;
  gap: 10px;
  margin: 0 10px;
}
#cv #cvMain .itemContent .item .detail .tags p {
  font-size: 14px;
  opacity: 0.75;
}
#cv #cvMain .itemContent .fa-external-link {
  font-size: 12px;
  padding: 4px;
  opacity: 0.5;
  transition: opacity 0.25s;
}
#cv #cvMain .itemContent .fa-external-link:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  #snap {
    height: auto;
    gap: 120px;
  }
  .section:not(#hero) {
    width: 100%;
    padding: 20px !important;
    height: auto !important;
    gap: 40px;
  }
  #hero {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 100px 60px 20px 60px;
  }
  #hero #intro {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #hero #intro h4 {
    padding-left: 0;
  }
  #hero #splineWrapper {
    width: 100%;
    min-height: 300px;
    flex-grow: 1;
  }
  #research {
    min-height: 100vh;
  }
  #research .research {
    width: 90% !important;
  }
  #interests {
    height: 100vh !important;
  }
  #interests #graphWrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }
  #interests #graphWrapper #info {
    position: relative;
    width: 100%;
    padding: 20px;
    max-width: 100%;
    top: initial;
    left: initial;
    box-shadow: none;
  }
  #interests #graphWrapper #interestGraph {
    width: 100%;
    height: 60vh;
    max-height: 1000px;
    min-height: 400px;
    flex-grow: 1;
    box-shadow: none;
  }
  #interests #graphWrapper #interestGraph #d3graph {
    width: 100%;
  }
  #contactForm {
    width: 100%;
  }
  footer {
    margin-top: 60px;
  }
  .cs .navBar {
    display: none !important;
  }
  .cs .contentWrapper {
    height: auto !important;
  }
  .cs .contentWrapper .callout .text h3 {
    margin-top: 40px !important;
  }
  #cv {
    flex-direction: column;
    align-items: center;
  }
  #cv #namecard {
    width: 100%;
    padding: 20px;
  }
  #cv #namecard img {
    width: 100px;
  }
  #cv #namecard #basicInfo {
    gap: 5px;
  }
  #cv #namecard #basicInfo p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
  }
  #cv #namecard #basicInfo #icons .icon {
    width: 30px;
    height: 30px;
    box-shadow: -2px 2px 0 #282623;
  }
  #cv #cvMain {
    padding: 60px 20px;
    width: 100%;
    height: auto;
    align-items: center;
  }
  #cv #cvMain .item {
    gap: 20px !important;
  }
  #cv #cvMain .item .time {
    font-size: 14px;
    width: 80px !important;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 3.5em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.5em;
  }
  .typing {
    height: 3.5rem !important;
  }
  #menu {
    top: 10px;
    left: 10px;
  }
  #snap {
    gap: 60px;
  }
  #hero {
    padding: 60px 20px 0 20px;
    height: auto;
  }
  #hero #about {
    width: 80%;
  }
  #hero #roles {
    margin: 0 !important;
  }
  #hero #splineWrapper {
    height: auto;
    min-width: 900px;
    flex-grow: initial;
  }
  #research {
    min-height: auto;
  }
  #research #stars,
  #research #telescope {
    display: none;
  }
  #contactForm {
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px !important;
  }
  #contactForm #text {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contactForm #text h2 {
    text-align: center;
  }
  #contactForm #text a {
    text-align: center;
  }
  #contactForm #text .btn {
    margin-top: 20px;
  }
  #contactForm #donut {
    display: none;
  }
  .cs .contentWrapper {
    overflow-x: hidden;
    padding: 0 !important;
  }
  .cs .content {
    padding: 20px 20px 0 20px !important;
  }
  .cs .callout {
    flex-direction: column;
    padding: 0 !important;
    gap: 20px !important;
  }
  .cs .callout .geoWrapper {
    width: 100% !important;
    height: 200px !important;
    min-height: initial !important;
    border: none !important;
  }
  .cs .callout .geoWrapper .geo {
    transform: none;
  }
  .cs .callout .text {
    padding: 20px !important;
  }
  .cs .callout .text h3 {
    margin-top: 0;
  }
  .geo {
    transform: translate(30px, -60px) !important;
  }
}

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