@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
:root {
  --c-darkest: #1d1d1d;
  --c-lightest: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  cursor: none;
}

body {
  background-color: var(--c-lightest);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-size: 20px;
}

.splash-screen {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--c-darkest);
  transition: all 1s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: 10;
}
.splash-screen h1 {
  color: transparent;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: 600;
  z-index: 15;
}
.splash-screen h1 span {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.splash-screen h1 span.next {
  color: transparent;
  margin-top: 100px;
}
.splash-screen h1 span.curr {
  color: var(--c-lightest);
  margin-top: 0;
}
.splash-screen h1 span.past {
  color: transparent;
  margin-top: -100px;
}
.splash-screen.end {
  margin-top: calc(-100vh - 300px);
}
.splash-screen.end .rounded {
  bottom: -150px;
  border-radius: 40%;
}
.splash-screen .rounded {
  display: block;
  width: 120%;
  height: 500px;
  position: absolute;
  bottom: -150px;
  background-color: var(--c-darkest);
  transition: all 1s;
  border-radius: 100%;
  z-index: 10;
}

nav {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 20px;
}
nav img.logo {
  height: 40px;
  width: fit-content;
  width: -moz-fit-content;
  -o-object-fit: contain;
     object-fit: contain;
}

section.home {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 100vh;
}
section.home img.pb {
  width: 250px;
  border-radius: 100%;
  z-index: 5;
}
section.home .title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}
section.home span.separator {
  display: block;
  width: 100px;
  height: 1px;
  background-color: var(--c-darkest);
}
section.home .links {
  display: flex;
  gap: 20px;
}
section.home .links a {
  display: block;
  width: 50px;
}
section.home .links a .cls-1 {
  fill: var(--c-darkest);
  fill-rule: evenodd;
}
section.home .links a .cls-2 {
  fill: var(--c-lightest);
}
section.home h1 {
  font-size: 2em;
  font-weight: 600;
  line-height: 40px;
}
section.home h4 {
  font-size: 1em;
  font-weight: 400;
  line-height: 30px;
}

footer {
  position: fixed;
  bottom: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}
footer h5 {
  font-size: 0.7em;
  letter-spacing: 3px;
}
footer h5 a {
  color: var(--c-darkest);
  text-decoration: none;
}

.cursor {
  z-index: 1;
  position: absolute;
  width: 10px;
  height: 10px;
  transform: scale(1);
  margin: -5px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: transform 0.5s;
}

@media screen and (max-width: 650px) {
  * {
    cursor: default;
  }
  .cursorHover, a {
    cursor: pointer !important;
  }
  img.pb {
    width: 180px !important;
  }
  .cursor {
    display: none !important;
  }
  body {
    font-size: 15px !important;
  }
  .splash-screen .rounded {
    height: 250px !important;
  }
}/*# sourceMappingURL=style.css.map */