:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #070807;
}

body {
  margin: 0;
  background: #070807;
  color: #f2eee5;
  font-family: Georgia, 'Times New Roman', serif;
  text-rendering: optimizeLegibility;
}

.under-construction {
  display: grid;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  justify-items: center;
  padding: clamp(24px, 4vw, 48px);
  background: #070807 url('/dungeon-dilemma-landing.png') center / cover no-repeat;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

footer {
  grid-row: 2;
  align-self: end;
  color: rgb(242 238 229 / 72%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-shadow: 0 2px 12px rgb(0 0 0 / 90%);
  text-transform: uppercase;
}

@media (max-aspect-ratio: 1 / 1) {
  .under-construction {
    background-size: contain;
  }
}

@media (max-width: 560px) {
  .under-construction {
    padding-inline: 20px;
  }
}
