:root {
  color-scheme: light dark;
  --background: #ffffff;
  --text: #202124;
  --link: #174ea6;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}
@media (prefers-color-scheme: dark) {
  :root {
    --background: #17181a;
    --text: #e8eaed;
    --link: #a8c7fa;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0 auto;
  max-width: 48rem;
  padding: 2rem 1.25rem 4rem;
  background: var(--background);
  color: var(--text);
  font-size: 1rem;
  overflow-wrap: anywhere;
}
a { color: var(--link); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 0.15em; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.brand { margin-bottom: 3rem; }
.brand a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}
.brand a::before {
  content: "";
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("/assets/images/logo.svg") center / contain no-repeat;
  mask: url("/assets/images/logo.svg") center / contain no-repeat;
  mask-mode: alpha;
}
.brand h1, .brand span { margin: 0; font-size: 2rem; font-weight: 700; }
.home { text-align: center; }
h1 { font-size: 2rem; line-height: 1.25; }
h2 { margin-top: 2rem; font-size: 1.25rem; line-height: 1.4; }
p { margin: 1rem 0; }
