html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #0c0f1d;
  font-family: "Press Start 2P", "Silkscreen", monospace;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

#app {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0c0f1d;
}

#pixi-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#pixi-container canvas {
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
