/* Minimal reset. No external resources. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  min-height: 100%;
  background: #000;
  color: #cfc8c4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  overscroll-behavior: none;
}
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, canvas, svg { display: block; max-width: 100%; }
:focus-visible { outline: 1px solid #6a2020; outline-offset: 2px; }
