:root {
  --bg: #0b0b0b;
  --text: #e8e8e8;
  --muted: #8f8f8f;
  --accent: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
}

a:hover {
  border-bottom-color: var(--accent);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.notice {
  max-width: 720px;
  text-align: center;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(32px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

p {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 3vw, 28px);
}
