:root { color-scheme: dark; background: #080503; color: #e8ceb0; }
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
main { width: 100%; height: 100vh; height: 100svh; position: relative; }
picture { display: block; width: 100%; height: 100%; }
img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Until the original portrait art is available, show the complete composition
   on portrait screens. This intentionally avoids clipping the baked-in lettering. */
@media (max-aspect-ratio: 1/1), (min-aspect-ratio: 12/5) {
  img { object-fit: contain; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
