:root {
  color-scheme: light;
  --background: #fbfbfa;
  --text: #1b1b1b;
  --muted: #606060;
  --line: #dededb;
  --accent: #245f8f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    Georgia,
    "Times New Roman",
    Times,
    serif;
  font-size: 17px;
  line-height: 1.62;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--text);
}

.page {
  width: min(680px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 48px;
}

.site-header {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.site-header p {
  margin-top: 14px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
  color: var(--muted);
}

.links span {
  color: #ababab;
}

section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin-bottom: 12px;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

footer {
  padding-top: 28px;
}

footer p {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 28px, 680px);
    padding-top: 38px;
  }

  h1 {
    font-size: 1.85rem;
  }
}
