html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  font-family: 'Ubuntu', sans-serif;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.content h1 {
  color: #ffffff;
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
