/* One thought a day. Narrow centered column, date and text, nothing else. */

:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #8a8a8a;
  --rule: #ececec;
  --link: #1a1a1a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101010;
    --text: #d6d6d6;
    --muted: #7a7a7a;
    --rule: #242424;
    --link: #d6d6d6;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 33rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.post + .post {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--rule);
}

.post-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.post-body p + p {
  margin-top: 1em;
}

.post-body em {
  font-style: italic;
}

