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

body {
  background: #0a0a0a;
  overflow: hidden;
  width: 100vw;
  height: 100dvh;
}

canvas {
  display: block;
  position: fixed;
  inset: 0;
}

.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 5;
}

@media (prefers-reduced-motion: reduce) {
  canvas {
    /* JS checks this media query to skip assembly animation */
  }
}
