:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #19322b;
  background: #f7f4ec;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f7f4ec;
}

main {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

header {
  padding-bottom: 24px;
  border-bottom: 1px solid #b8c8c1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0c604a;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
}

h1 {
  margin: 22px 0 8px;
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 1.05;
}

h2 {
  margin: 34px 0 10px;
  font-size: 1.2rem;
}

p,
li {
  color: #38534b;
  line-height: 1.65;
}

ul {
  padding-left: 22px;
}

a {
  color: #08745a;
}

.updated {
  margin: 0;
  font-size: 0.9rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid #b8c8c1;
  font-size: 0.9rem;
}

@media (prefers-color-scheme: dark) {
  :root,
  body {
    color: #edf6f1;
    background: #0e1916;
  }

  header,
  footer {
    border-color: #345047;
  }

  .brand,
  a {
    color: #72d9b7;
  }

  p,
  li {
    color: #c2d5ce;
  }
}
