:root {
  color-scheme: light;
  --background: #fafafa;
  --foreground: #181818;
  --muted: #606060;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.page {
  width: min(720px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 48px 0;
}

.domain {
  margin: 0;
  color: var(--muted);
  font: 600 0.875rem/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.075rem;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 28px, 720px);
    align-content: start;
  }
}
