:root {
  --bg: #fdfdfc;
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e6e4df;
  --accent: #002659;
  --max-width: 480px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14161a;
    --fg: #e9e8e4;
    --muted: #8f9096;
    --line: #2a2d33;
    --accent: #7ba3e0;
  }
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light dark;
}

body {
  margin: 0;
  padding: 0 24px;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

header.site {
  padding: 64px 0 32px;
}

header.site .brand {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 10px;
}

.link-list a {
  color: var(--fg);
  text-decoration: none;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.link-list a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
