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

body {
  touch-action: none;
  overscroll-behavior: none;
  background: #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

canvas#game {
  display: block;
  image-rendering: pixelated;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}
