/* The app's palette, so the site and the thing it describes look like one product. */
:root {
  --bg: #2d211b;
  --fg: #dad2bc;
  --accent: #44523d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 3rem 1.5rem 6rem;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

main {
  max-width: 42rem;
  margin: 0 auto;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.15rem;
  margin: 2.5rem 0 0.75rem;
}

.lede,
.meta {
  color: rgb(218 210 188 / 60%);
}

.meta {
  font-size: 0.85rem;
  margin: 0 0 3rem;
}

a {
  color: var(--fg);
  text-decoration-color: rgb(218 210 188 / 40%);
  text-underline-offset: 3px;
}

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

ul { padding-left: 1.25rem; }

li { margin: 0.4rem 0; }

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(218 210 188 / 15%);
  font-size: 0.85rem;
  color: rgb(218 210 188 / 60%);
}
