:root {
  color-scheme: dark;
  --bg: #131313;
  --fg: #f2f2f0;
  --muted: #9a9a96;
  --rule: #2a2a28;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.home {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px;
  text-align: center;
}

.home img {
  width: min(360px, 70vw);
  height: auto;
}

.home .tagline {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.02em;
}

.home footer {
  position: fixed;
  bottom: 24px;
  font-size: 13px;
  color: var(--muted);
}

.home footer a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.home footer a:hover {
  border-bottom-color: var(--muted);
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 96px;
  line-height: 1.6;
}

.page a.back {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.page a.back:hover {
  color: var(--fg);
}

.page h1 {
  font-size: 28px;
  margin: 0 0 8px;
}

.page .updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 40px;
}

.page h2 {
  font-size: 18px;
  margin: 40px 0 12px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.page p,
.page li {
  color: #d6d6d3;
  font-size: 15px;
}

.page ul {
  padding-left: 20px;
}

.page .contact {
  color: var(--fg);
}
