/* -- KISS Pinball -- Stylesheet -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%; height: 100%; overflow: hidden; background: #000;
  -webkit-tap-highlight-color: transparent; touch-action: none;
  -webkit-touch-callout: none; -webkit-user-select: none; user-select: none;
}
canvas {
  display: block; width: auto; height: 100%; aspect-ratio: 480 / 854;
  margin: 0 auto;
}
@media (max-width: 767px) {
  canvas { width: 100vw; height: 100vh; height: 100dvh; aspect-ratio: auto; }
}
@media (orientation: landscape) and (max-height: 700px) {
  canvas { width: auto; height: 100vh; height: 100dvh; aspect-ratio: 480 / 854; margin: 0 auto; }
}
.in-iframe canvas { width: 100vw !important; height: 100vh !important; height: 100dvh !important; aspect-ratio: auto !important; }