html, body {
  margin: 0;
  height: 100%;
  background: #0a0a12;
  display: grid;
  place-items: center;
  overflow: hidden;
}

#scene {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  width: min(96vw, calc(96vh * 25 / 16));
  height: auto;
  aspect-ratio: 25 / 16;
}
