html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #070b07;
  overflow: hidden;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  font-family: "Courier New", Courier, monospace;
}

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

@media (max-aspect-ratio: 640/1100) {
  #wrap { align-items: flex-end; }
}

#game {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  touch-action: none;
  background: #0c140c;
}

@media (min-aspect-ratio: 640/1100) {
  #game { height: 100vh; height: 100dvh; width: auto; }
}
@media (max-aspect-ratio: 640/1100) {
  #game { width: 100vw; height: auto; }
}
