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

:root {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  color: white;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

a {
  color: #a0ffa8;
  text-decoration: unset;
  transition: color 0.2s;
}
a:hover {
  color: #25D033;
}

.hidden {
  display: none !important;
}

.lorem p {
  margin: 32px 20vw;
  font-size: 16pt;
}

.header {
  width: 100vw;
  height: 100svh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.header h1 {
  font-size: 80pt;
  font-weight: 200;
  z-index: 10;
  user-select: none;
}
.header canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10vh;
  bottom: 0;
  background: linear-gradient(0deg, black, transparent);
}

@media (max-width: 430px) {
  .header h1 {
    padding: 8px;
    font-size: 50pt;
  }
}
@media (max-width: 280px) {
  .header h1 {
    font-size: 30pt;
  }
}
section h2 {
  font-size: 48pt;
  font-weight: 200;
  text-align: center;
  padding: 16px 0;
}

.divider-section {
  position: relative;
  padding-top: 120px;
}

.custom-shape-divider-top-1693037555 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-top-1693037555 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 148px;
}
.custom-shape-divider-top-1693037555 .shape-fill {
  fill: black;
}

@media (max-width: 500px) {
  .divider-section {
    padding-top: 80px;
  }
  .custom-shape-divider-top-1693037555 svg {
    width: calc(184% + 1.3px);
    height: 100px;
  }
}
.about_me {
  background-color: #101010;
}
.about_me a {
  color: #a9eaff;
}
.about_me a:hover {
  color: #47D1FF;
}
.about_me .content {
  display: flex;
  gap: 64px;
  padding: 32px 10vw;
}
.about_me .content > * {
  flex: 1 1 0px;
}
.about_me .facts .item,
.about_me .timeline .item {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #808080;
  padding: 0 8px 16px;
}
.about_me .facts .key,
.about_me .timeline .key {
  font-size: 18pt;
  font-weight: 700;
  color: #c5c5c5;
}
.about_me .facts .value,
.about_me .timeline .value {
  text-align: right;
  font-size: 14pt;
}
.about_me .timeline {
  margin-top: 48px;
}
.about_me .timeline .timespan {
  font-size: 18pt;
  color: #47D1FF;
  font-weight: 200;
}
.about_me .timeline .value p {
  color: #47D1FF;
  font-size: 12pt;
}
.about_me .details {
  font-size: 16pt;
}
.about_me .details a {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .about_me .content {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .about_me .value h3 {
    font-size: 14pt;
  }
  .about_me .content .details {
    font-size: 14pt;
  }
}
@media (max-width: 400px) {
  .about_me h2 {
    font-size: 36pt;
  }
  .about_me .content .facts .item,
  .about_me .content .timeline .item {
    flex-direction: column;
  }
  .about_me .content .facts .value,
  .about_me .content .timeline .value {
    padding-top: 4px;
    text-align: left;
  }
  .about_me .content .details {
    font-size: 12pt;
  }
}
.projects .custom-shape-divider-top-1693037555 svg {
  transform: rotateY(180deg);
}
.projects .custom-shape-divider-top-1693037555 .shape-fill {
  fill: #101010;
}
.projects a {
  color: #d3a0ff;
}
.projects a:hover {
  color: #7000C6;
}

.project-list {
  padding: 0 10%;
}

.project {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 32px 0;
  padding: 0 0 32px;
  border-bottom: 1px solid #101010;
}
.project:last-child {
  border: unset;
}
.project .img-wrapper {
  align-self: center;
}
.project img {
  max-height: 50vh;
  max-width: 30vw;
}
.project .description {
  flex-grow: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.project .description h3 {
  font-size: 36pt;
  font-weight: 500;
  margin-bottom: 8px;
}
.project .description h3 a {
  position: relative;
  color: white;
}
.project .description h3 a::before {
  content: "";
  background-color: #7000C6;
  position: absolute;
  bottom: 0;
  width: 0px;
  height: 3px;
  right: 0;
  transition: 0.2s width;
}
.project .description p {
  font-size: 16pt;
}
.project .description p a {
  text-decoration: underline;
}
.project .img-wrapper:hover ~ .description h3 a::before,
.project .description h3 a:hover::before {
  right: unset;
  left: 0;
  width: 100%;
}
.project:nth-child(2n) {
  flex-direction: row-reverse;
}
.project:nth-child(2n) .description {
  align-items: flex-start;
}

@media (max-width: 700px) {
  .project {
    flex-direction: column !important;
  }
  .project img {
    max-height: 35vh;
    max-width: 100%;
  }
  .project .description {
    padding: 0;
    align-items: flex-start !important;
  }
}
.contact {
  background-color: #101010;
  padding-bottom: 32px;
}
.contact .items {
  display: flex;
  justify-content: space-evenly;
  margin: 64px 0;
  font-size: 24pt;
  text-align: center;
}
.contact .items img {
  height: 32pt;
}
.contact .items a {
  text-decoration: underline;
}

@media (max-width: 850px) {
  .contact .items {
    flex-direction: column;
    align-items: center;
    gap: 5em;
  }
}
@media (max-width: 400px) {
  .contact .items {
    font-size: 16pt;
  }
}
footer {
  background-color: black !important;
}

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