html, body {
  margin: 0;
  height: 100%;
  background: black;
  overflow: hidden;
  font-family: Inter, system-ui;
}

#hero {
  height: 100vh;
  position: relative;
}

canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.hero-text {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

p {
  opacity: 0.6;
  font-size: 1.2rem;
}
