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

body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: #0f141c;
  padding: 24px 24px 52px;
  box-sizing: border-box;
}

.game-logo {
  display: block;
  width: min(1200px, 95vw);
}

.game-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82svh;
  object-fit: contain;
}

.site-footer {
  position: fixed;
  left: 0;
  bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #9ca3af;
}

@media (max-aspect-ratio: 1/1) {
  .game-logo {
    width: min(92vw, 850px);
  }

  .game-logo img {
    max-height: 80svh;
  }
}
