@font-face {
  font-family: 'CyberpunkCraftpixPixel';
  src: url('../fonts/CyberpunkCraftpixPixel.woff2') format('woff2'),
    url('../fonts/CyberpunkCraftpixPixel.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #00003c;
  color: #ddd;
  font-family: 'CyberpunkCraftpixPixel', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#wrap {
  height: 100%;
  display: grid;
  place-items: center;
}

#game {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#game canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: optimizeSpeed;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

#crt-overlay {
  pointer-events: none;
  z-index: 20;
  opacity: 1;
  mix-blend-mode: normal;
  width: auto;
  height: auto;
}