/* Kindlefall — style.css: the canvas is the entire UI; this only centres it. */
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; background: #0b0709; overflow: hidden; }
body {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace; color: #f2d4a8;
  user-select: none; -webkit-user-select: none; -webkit-tap-highlight-color: transparent;
  touch-action: none;
}
#wrap { position: relative; line-height: 0; }
#game {
  display: block;
  image-rendering: pixelated; image-rendering: crisp-edges;
  background: #000;
  outline: none;
}
#noscript { padding: 24px; font-size: 14px; }
