@font-face {
  font-family: 'LCD';
  src: local('Courier New'), local('monospace');
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
  font-family: 'Courier New', monospace;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: unset;
}

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

#game-container canvas {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

@media (orientation: landscape) and (max-height: 500px) {
  #game-container canvas {
    max-height: 100vh;
    width: auto;
  }
}

@media (orientation: portrait) {
  #game-container canvas {
    max-width: 100vw;
    height: auto;
  }
}
