/* The whole site: one column, comfortable type, and room to breathe. */
:root {
  color-scheme: light;
  --paper: #fafafa;
  --ink: #252525;
  --body: #565656;
  --line: #d9d9d9;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--paper); }
body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 96px 28px 128px;
  background: var(--paper);
  color: var(--body);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/gray-mist.png") center bottom / cover no-repeat;
  pointer-events: none;
}
main { position: relative; width: 100%; max-width: 540px; }
header { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
h1 { margin: 0; color: var(--ink); font-size: 36px; line-height: 1.3; letter-spacing: -1.25px; font-weight: 650; }
nav { display: flex; align-items: center; gap: 4px; }
nav a { display: grid; place-items: center; width: 44px; height: 44px; }
nav svg { width: 29px; height: 29px; }
a { color: inherit; text-decoration-color: var(--line); text-underline-offset: 4px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); text-decoration-color: currentColor; }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; border-radius: 1px; }
nav a { text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: 23px 0 22px; }
p { margin: 0 0 17px; }
p:last-child { margin-bottom: 0; }
::selection { background: #dedede; color: #252525; }
@media (max-width: 480px) {
  body { padding: 80px 28px 96px; font-size: 15px; }
  header { align-items: flex-start; flex-direction: column; gap: 13px; }
  h1 { font-size: 34px; }
  nav { margin-left: -10px; }
  hr { margin: 21px 0; }
}
