@font-face {
  font-family: prstart;
  src: url('../fonts/prstart.ttf');
}
body {
  font-family: prstart;
  font-size: 16px;
  background-color: black;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#main {
  margin: 0;
  width: 100%;
  height: 100%;
  color: white;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 512px;
  max-height: 448px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
