:root {
  color-scheme: light;
  --bg: #f6f6f4;
  --ink: #242424;
  --muted: #6a6a64;
  --line: #ddddda;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

.page {
  display: grid;
  min-height: 100vh;
  padding: 28px;
  place-items: center;
}

.notice {
  width: min(100%, 520px);
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.status {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
}

.message {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
}
