.hero .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.scroll-hint {
  position: absolute;
  top: 8em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.scroll-hint p {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.7;
}

.about-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-dark);
  color: var(--accent);
  clip-path: polygon(0% 50%, 100% 50%, 100% 50%, 0% 50%);
  will-change: clip-path;
}

.about-header h1 {
  font-family: "Osgard Pro";
  font-size: 25vw;
  letter-spacing: -0.02em;
  line-height: 80%;
  margin-top: 2rem;
  transform: scale(0.75);
  opacity: 0;
  will-change: transform, opacity;
}

@media (max-width: 900px) {
  .hero-copy {
    max-width: 100%;
  }
}

#canvas3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#canvas3d .container__spline {
  width: 100%;
  height: 100%;
  transform: scale(1);
  pointer-events: none;
}
