:root {
  color-scheme: dark;
  background: #080b17;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080b17;
  user-select: none;
}

.game-stage {
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
}

#game {
  width: 480px;
  height: 270px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  outline: none;
  cursor: none;
  touch-action: none;
}

#game:focus-visible {
  outline: 1px solid #6c7d82;
  outline-offset: 0;
}

.status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
