body{
  margin: 0px;
  padding: 0px;
}
#game{
  display: block;
  width: 200vmin;
  height: 200vmin;
  background-image: url('./assets/worldgen/map.png');
  background-size: 200vmin 200vmin;
  background-repeat: no-repeat;
}
.player{
  position: absolute; 
  top: 0px;
  left: 0px;
  background-image: url('./assets/character/idle.png');
  width: 20vmin;
  height: 20vmin;
  background-repeat; no-repeat;
  background-size: 20vmin;
  background-position: 0 0;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}