* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}

html, body {
  width: 100%;
  height: 100%;
  background: #080C10;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#game-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#game-container canvas {
  display: block;
  image-rendering: auto;
}
