html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050607;
  touch-action: none;
  user-select: none;
}

#game {
  width: 100%;
  height: 100%;
  background: #050607;
}

canvas {
  display: block;
}

#boot-loader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 10;
  pointer-events: none;
  background: #050607;
}

body.game-ready #boot-loader {
  display: none;
}
