em {
  color: #F36F3F;
  font-style: normal;
}

h1 {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 240px;
  font-weight: 900;
}

h2 {
  display: flex;
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 96px;
  font-weight: 900;
}

h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 48px;
  font-weight: 600;
}

h4 {
  display: flex;
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
}

h5 {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  opacity: 0.5;
}

h6 {
  font-family: "Urbanist", sans-serif;
  font-size: 32px;
  font-weight: 600;
}

p {
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  width: 100%;
}

a {
  color: inherit;
  font-family: inherit;
  text-decoration: inherit;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  color: #E4E7E7;
  background-color: #0D0D0D;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 64px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 64px;
  padding: 64px;
  width: 100%;
  min-height: 35svh;
}

div {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1296px;
}

hr {
  height: 1px;
  width: 100%;
  max-width: 1296px;
  opacity: 0.2;
}

button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 8px 24px 8px 8px;
  border-radius: 64px;
  background-color: rgba(228, 230, 230, 0.2);
  color: #E4E7E7;
  border: 2px solid #292929;
  opacity: 0.5;
  transition: 0.4s ease-in-out;
}
button .backContainer {
  min-width: 40px;
  align-items: flex-end;
  transition: 0.4s ease-in-out;
}
button p {
  width: 100%;
}
button:hover {
  opacity: 1;
}
button:hover .backContainer {
  padding-right: 8px;
}

section .landing {
  gap: 64px;
  height: 75svh;
  text-align: center;
}
section .hero {
  gap: 64px;
}
section .hero img {
  max-width: 256px;
  height: auto;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section .hero h1 {
  opacity: 0.5;
}
section .landingText {
  gap: 0;
  text-align: center;
}

.downArrow {
  color: #F36F3F;
  position: absolute;
  align-items: center;
  bottom: 10svh;
  left: 50%;
  margin-left: -20px;
  opacity: 0;
  width: auto;
  animation-name: scroll;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-delay: 2s;
}

.experienceLinks {
  justify-content: left;
  text-align: left;
  flex-direction: row;
  width: 100%;
  max-width: 1296px;
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  gap: 32px;
}
.experienceLinks a {
  color: #E4E7E7;
}
.experienceLinks a p {
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-decoration: underline;
  opacity: 0.5;
  transition: 0.4s ease-in-out;
}
.experienceLinks a p:hover {
  opacity: 1;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  border-radius: 32px;
  border: 2px solid #292929;
  align-items: flex-start;
  align-self: stretch;
  justify-content: left;
  fill: #141414;
  overflow: hidden;
}
.card h3 {
  width: 100%;
}
.card .viewProjectContainer {
  align-self: stretch;
  width: auto;
  justify-content: flex-end;
  opacity: 0.5;
}
.card .viewProjectContainer .viewProject {
  flex-direction: row;
  gap: 0;
}
.card .viewProjectContainer .viewProject p {
  white-space: nowrap;
}
.card .viewProjectContainer .affordance {
  height: 100%;
}
.card .projectImage {
  height: 192px;
  justify-content: flex-end;
}
.card .projectImage img {
  transform: translateY(32px);
}

.experience {
  gap: 32px;
  justify-content: left;
  text-align: left;
  flex-direction: row;
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-self: stretch;
}

.interactiveCard {
  transition: 0.4s ease-in-out;
}
.interactiveCard:hover {
  border: 2px solid #646464;
}

.summary {
  padding: 32px;
  border-radius: 32px;
  border: 2px solid #292929;
  align-items: flex-start;
  align-self: stretch;
  justify-content: left;
  fill: #141414;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  gap: 32px;
}

.projectInfo {
  flex-direction: row;
  align-items: flex-start;
}
.projectInfo .textBlock {
  gap: 0;
}
.projectInfo .textBlock .label {
  opacity: 0.5;
}
.projectInfo .textBlock .role {
  color: #F36F3F;
}

.website {
  background: radial-gradient(60.34% 60.34% at 50% 100%, #707070 0%, #141414 100%);
}
.website .projectImage {
  height: 176px;
}

.projectGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.hobbyGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.hobbyGrid .card h6 {
  color: #F36F3F;
}

.linkedinContainer {
  align-items: flex-start;
}
.linkedinContainer a {
  opacity: 0.5;
  transition: 0.4s ease-in-out;
}
.linkedinContainer a:hover {
  opacity: 1;
}

.backButton {
  position: fixed;
  top: 2vw;
  left: 2vw;
  cursor: pointer;
  z-index: 100;
}

.projectLanding {
  gap: 64px;
}
.projectLanding h2 {
  text-transform: none;
  font-weight: 800;
  opacity: 0.5;
  width: 100%;
}
.projectLanding img {
  width: 100%;
  height: auto;
}

.footer {
  justify-content: flex-start;
}

.textHug {
  width: auto;
}
.textHug p {
  white-space: nowrap;
}

.fillH {
  height: 100%;
}

.fillW {
  width: 100%;
}

.gap0 {
  gap: 0;
}

.gapUnit4 {
  gap: 32px;
}

.gapUnit8 {
  gap: 64px;
}

.alignL {
  text-align: left;
  align-items: flex-start;
  width: 100%;
}

.alignR {
  text-align: right;
}

.alignC {
  text-align: center;
  align-items: center;
}

.year {
  width: 120px;
  height: 100%;
  align-items: flex-end;
}

.padding0 {
  padding: 0;
}

.opacityMid {
  opacity: 0.5;
}

.directionH {
  justify-content: left;
  text-align: left;
  flex-direction: row;
  width: 100%;
  display: flex;
  align-items: flex-end;
  align-self: stretch;
}

.highlight img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1000px) {
  h1 {
    font-size: 120px;
  }
  h2 {
    font-size: 64px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 32px;
  }
  h5 {
    font-size: 32px;
    font-weight: 400;
  }
  h6 {
    font-size: 32px;
  }
  p {
    font-size: 24px;
  }
  body {
    flex-direction: column;
    gap: 48px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  section {
    gap: 32px;
    padding: 16px;
  }
  section .hero img {
    max-width: 240px;
  }
  .directionH {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .experience {
    gap: 24px;
  }
  .hobbyGrid {
    grid-template-columns: 1fr;
  }
  .projectGrid {
    grid-template-columns: 1fr;
  }
  .projectInfo {
    flex-direction: column;
  }
}
@media only screen and (max-width: 540px) {
  h1 {
    font-size: 120px;
  }
  h2 {
    font-size: 64px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 16px;
    letter-spacing: 4px;
  }
  h5 {
    font-size: 24px;
  }
  h6 {
    font-size: 24px;
  }
  p {
    font-size: 16px;
  }
  body {
    gap: 48px;
  }
  section {
    gap: 32px;
    padding: 8px;
  }
  section .landing {
    height: 100svh;
  }
  section .hero img {
    max-width: 192px;
  }
  .downArrow {
    bottom: 2svh;
  }
  .directionH {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hobbyGrid {
    grid-template-columns: 1fr;
  }
  .projectGrid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */