* { 
	box-sizing: border-box;
}

html, body {
  background-color: white;
  margin: 0;
  padding: 0;
  overflow: hidden;
  touch-action: none;
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}
canvas {
	display: flex;
	image-rendering: -moz-crisp-edges;
	image-rendering: pixelated;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
	margin: auto;
}
#stats {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8pt;
  position: fixed;
}
