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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0806;
  background-image:
    radial-gradient(ellipse 90% 70% at 50% 45%, #241a12 0%, #0f0b08 55%, #060403 100%);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  color: #c8b89a;
}

#stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Teljes kepernyo a bongeszon belul: a lehetseges legnagyobb egesz
   szamu nagyitas, keret nelkul. F11 alatt is ez ervenyes. */
#game {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  display: block;
  background: #1b2a17;
  box-shadow: 0 0 90px rgba(255, 120, 40, 0.08);
}
