body {
  margin: 0;
  font-family: sans-serif;
}

/* Game canvas wrapper */
#gameArea {
  background-color: black;
  color: white;
  width: 100vw;
  height: 100vh;
  /* min-height: 784px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* HTML Canvas Element */
#gameWorld {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
