:root {
  color-scheme: light;
  --background: #f7f6f3;
  --foreground: #242422;
  --muted: #6d6c67;
  --surface: #eeede9;
  --type-body: 1rem;
  --type-caption: 0.875rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

:root[data-theme="dark"] {
  color-scheme: dark;
  --background: #181817;
  --foreground: #f7f6f3;
  --muted: #b5b4ad;
  --surface: #292928;
}

[data-theme="dark"] h1 img { filter: invert(1); }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
}

main {
  display: grid;
  place-items: center;
  padding: 80px 24px 32px;
}

.announcement {
  width: 100%;
  text-align: center;
}

h1 { margin: 0; line-height: 1; }

h1 img {
  display: block;
  width: min(264px, 78vw);
  height: auto;
  margin: 0 auto;
}

.message {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.6;
  text-wrap: balance;
}

.development {
  display: inline-block;
  margin: 24px 0 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.5;
}

footer {
  padding: 24px 24px max(24px, env(safe-area-inset-bottom));
  text-align: center;
  color: var(--muted);
  font-size: var(--type-caption);
  line-height: 1.5;
}

footer p { margin: 0; }

@media (max-width: 480px) {
  h1 img { width: min(232px, 78vw); }
}
