html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(88, 72, 36, 0.42) 0%, rgba(22, 28, 12, 0.64) 38%, rgba(8, 6, 4, 1) 100%),
    #0a0806;
  overflow: hidden;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  font-family: "Trebuchet MS", "PingFang SC", "Noto Sans SC", sans-serif;
}

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

@media (max-aspect-ratio: 1024/768) {
  #wrap { align-items: center; }
}

#game {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  touch-action: none;
  background: #1a140c;
  box-shadow:
    0 0 0 2px rgba(214, 179, 106, 0.38),
    0 0 0 6px rgba(20, 12, 6, 0.75),
    0 0 48px rgba(134, 92, 34, 0.38),
    0 18px 60px rgba(0, 0, 0, 0.65);
}

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