* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #111318;
  color: #f2f4f8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

button,
select,
textarea {
  font: inherit;
}

#shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

#game {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  touch-action: none;
  overscroll-behavior: none;
}

#game canvas {
  display: block;
  image-rendering: pixelated;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

@media (max-width: 980px) {
  #shell {
    padding: 0;
  }
}
