/* Typography-first stylesheet for dnd.prod.metaspot.org */

:root {
  --text: #2e2e2e;
  --bg: #fafaf8;
  --muted: #6b6b6b;
  --rule: #d4d0c8;
  --accent: #8b4513;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 20px;
}

body {
  font-family: "Charter", "Bitstream Charter", "Georgia", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  max-width: 38em;
  margin: 3rem auto;
  padding: 0 1.5rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Palatino", "Palatino Linotype", "Book Antiqua", serif;
  font-weight: normal;
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

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

h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.5rem;
}

p {
  margin: 0 0 1.2rem;
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

ul, ol {
  padding-left: 1.4em;
  margin: 0 0 1.2rem;
}

li {
  margin-bottom: 0.4rem;
}

blockquote {
  margin: 1.5rem 0;
  padding: 0 0 0 1.2em;
  border-left: 3px solid var(--rule);
  color: var(--muted);
  font-style: italic;
}

small {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  html {
    font-size: 18px;
  }

  body {
    margin: 1.5rem auto;
    padding: 0 1.25rem;
    line-height: 1.65;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  p {
    margin: 0 0 1rem;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 17px;
  }

  body {
    padding: 0 1rem;
  }
}
