/* ゼノレダの伝説 v7.3 — レイアウト（仕様 §3.1）
   内部解像度 512×448 を CSS で 1.5 倍（768×672）に拡大表示する。
   拡大時にぼかさないため image-rendering: pixelated を指定する。 */
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  height: 100%;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
canvas {
  width: 768px;
  height: 672px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  background: #000;
}
