/* PUDDING INFERNO GRID v0.1.0 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0F0808;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}

#game-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-canvas {
  display: block;
  touch-action: none;
  image-rendering: pixelated;
}

#version {
  position: fixed;
  top: 8px;
  left: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  pointer-events: none;
  z-index: 999;
  letter-spacing: 0.05em;
}
