* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

#title {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  user-select: none;
}
