@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nabla&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nova+Mono&display=swap");
header#main {
  font-style: normal;
  font-weight: 400;
  font-family: "Nabla", system-ui;
  font-optical-sizing: auto;
  font-variation-settings: "EDPT" 100, "EHLT" 12;
  text-align: center;
}
header#main span {
  display: inline-block;
  position: relative;
  top: -100vh;
  opacity: 0;
  animation: fall 1s forwards;
  font-size: 100px;
}
header#main span#ü.fly-up {
  animation: fly-up 0.45s forwards;
}
header#main span#ü.descend {
  animation: descend 0.45s forwards;
}
@media screen and (max-width: 599px) {
  header#main span {
    font-size: 33.3333333333px;
  }
}

header#main span:nth-child(1) {
  animation-delay: 0.15s;
}

header#main span:nth-child(2) {
  animation-delay: 0.3s;
}

header#main span:nth-child(3) {
  animation-delay: 0.45s;
}

header#main span:nth-child(4) {
  animation-delay: 0.6s;
}

header#main span:nth-child(5) {
  animation-delay: 0.75s;
}

header#main span:nth-child(6) {
  animation-delay: 0.9s;
}

header#main span:nth-child(7) {
  animation-delay: 1.05s;
}

header#main span:nth-child(8) {
  animation-delay: 1.2s;
}

header#main span:nth-child(9) {
  animation-delay: 1.35s;
}

header#main span:nth-child(10) {
  animation-delay: 1.5s;
}

header#main span:nth-child(11) {
  animation-delay: 1.65s;
}

header#main span:nth-child(12) {
  animation-delay: 1.8s;
}

@keyframes fall {
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes fly-up {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -150px;
    opacity: 1;
  } /* Adjust the value as needed */
}
@keyframes descend {
  0% {
    top: -300px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
html {
  --s: 90px; /* control the size*/
  --c1: #0d0d26;
  --c2: #0a0a1e;
  --_g: calc(2 * var(--s)) calc(2 * var(--s))
    radial-gradient(25% 25%, var(--c1) 99%, #0000 101%);
  position: relative;
  background: 0 var(--s)/var(--_g), var(--s) 0/var(--_g), radial-gradient(50% 50%, var(--c2) 97%, rgba(0, 0, 0, 0)) calc(var(--s) / 2) calc(var(--s) / 2)/var(--s) var(--s), linear-gradient(90deg, var(--c1) 50%, var(--c2) 0) 0 0/calc(2 * var(--s));
  background-attachment: fixed;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-right: 3vw;
  height: 100%;
}
main > * {
  display: block;
}
main section {
  padding-top: 5vh;
  width: 100%;
  height: 90vh;
}

#projects {
  display: grid;
  place-items: center;
  width: 100%;
}
#projects iframe {
  padding: 1rem;
  background-color: white;
  max-width: 96.5%;
  min-width: 250px;
  height: 90%;
  resize: horizontal;
  border-radius: 30px;
}

#scroll_container #language {
  position: fixed;
  top: 1vh;
  right: 1vw;
  cursor: pointer;
  background: none;
  background-image: url("");
  width: 30px;
  height: auto;
  padding: 0;
  margin: 0;
}
#scroll_container #scroll {
  display: flex;
  position: fixed;
  top: 3.9vh;
  right: 9vw;
  flex-direction: column;
  justify-content: space-around;
  background-color: #e6e6d2;
  width: 0.1vw;
  height: 90vh;
  border-radius: 1000px;
}
#scroll_container #scroll a {
  margin-left: 1vw;
  color: #e6e6d2;
  text-decoration: none;
}
#scroll_container #scroll a:hover {
  color: #ffe24e;
}
@media screen and (max-width: 599px) {
  #scroll_container #scroll {
    top: 15vh;
    right: 19vw;
    height: 50vh;
    font-size: 14.2857142857px;
  }
  #scroll_container #scroll a {
    margin-left: 3vw;
  }
}

.box {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 30px;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: #1a1a4c;
}

#about {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
  height: 79vh;
}
#about #portrait_container {
  display: flex;
  justify-content: center;
}
#about #portrait_container img {
  border-radius: 50%;
  border: 1rem rgba(0, 0, 0, 0.15) solid;
  height: 100px;
}
#about #portrait_container hgroup * {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0 10vw 0 10vw;
  height: 1000vh;
  overflow-y: hidden;
  color: #e6e6d2;
  font-style: normal;
  font-weight: 550;
  font-size: 1rem;
  font-family: "Nova Mono", monospace;
}/*# sourceMappingURL=style.css.map */