@font-face {
  font-family: "Bonum";
  src: url("/fonts/bonum-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bonum";
  src: url("/fonts/bonum-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ground: #FBF5E9;
  --ink: #211E19;
  --muted: #6B635A;
  --rule: #DED5C4;
  --tile: #F6B93B;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #211E19;
    --ink: #F2EEE9;
    --muted: #A29888;
    --rule: #3A3536;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Bonum", Bookman, "Bookman Old Style", Georgia, serif;
  font-size: 18px;
  line-height: 1.62;
  padding: 3.5rem 1.5rem 4rem;
  display: flex;
  justify-content: center;
}

main { width: 100%; max-width: 34rem; }

.lockup { display: block; height: 46px; width: auto; margin-bottom: 2.75rem; }
.lockup-dark { display: none; }
@media (prefers-color-scheme: dark) {
  .lockup-light { display: none; }
  .lockup-dark { display: block; }
}

h1 {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1.25rem;
  letter-spacing: -0.005em;
}

h2 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 2.5rem 0 0.6rem;
}

p { margin: 0 0 1.15rem; }

.lede {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

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

a { color: inherit; text-decoration-color: var(--tile); text-underline-offset: 3px; text-decoration-thickness: 2px; }
a:hover { text-decoration-color: var(--ink); }

ul { margin: 0 0 1.15rem; padding-left: 1.15rem; }
li { margin-bottom: 0.45rem; }

.status {
  display: inline-block;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--tile);
  padding: 0.55rem 0.9rem;
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

hr { border: 0; border-top: 1px solid var(--rule); margin: 3rem 0 1.5rem; }

footer { font-size: 0.9rem; color: var(--muted); }
footer a { margin-right: 1.1rem; white-space: nowrap; }

.back { font-size: 0.9rem; color: var(--muted); display: inline-block; margin-bottom: 2rem; }

@media (max-width: 480px) {
  body { padding-top: 2.5rem; font-size: 17px; }
  .lockup { height: 38px; }
  h1 { font-size: 1.35rem; }
}
