/* Shared by every one-pager in static/. A site that needs more adds a <style> after the link. */
:root {
  color-scheme: light dark;
  --ground: #f7f7f5;
  --ink: #161616;
  --muted: #5c5c5c;
  --ring: #161616;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #131313;
    --ink: #ededea;
    --muted: #a3a3a0;
    --ring: #ededea;
  }
}
* {
  box-sizing: border-box;
}
html {
  background: var(--ground);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100dvh;
  padding: 1.5rem 0.75rem;
}
main {
  margin-inline: auto;
  max-width: 65ch;
}
h1 {
  font-size: 1.75rem;
  line-height: 1.15;
  margin: 0 0 1rem;
}
p {
  margin: 0 0 1rem;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
a:hover {
  text-decoration-thickness: 2px;
}
a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}
footer {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  body {
    padding: 4rem 1.5rem;
  }
  h1 {
    font-size: 2.25rem;
  }
}
.visually-hidden {
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
/* image-only pages: the picture is the page, so it sits in the middle of the viewport */
.centered {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: calc(100dvh - 3rem);
}
@media (min-width: 768px) {
  .centered {
    min-height: calc(100dvh - 8rem);
  }
}
