* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  background: #6f9a4e;
  overflow: hidden;
  font-family: "Baloo 2", system-ui, sans-serif;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}
#stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 50% 0%, #a7cf7e 0%, #8bb968 45%, #6f9a4e 100%);
}
#game {
  display: block;
  image-rendering: auto;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(20, 40, 15, 0.35);
  cursor: default;
}
