:root {
  --bg: #fcfbf7;
  --fg: #171717;
  --muted: #6e6a62;
  --line: #d8d1c5;
  --accent: #8c3b19;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration-color: var(--line);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

.page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.site-header,
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.site-description,
.post-meta,
.post-list-date {
  color: var(--muted);
}

.content {
  margin: 3rem 0;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.post-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.post-list a {
  font-size: 1.25rem;
  text-decoration: none;
}

.post-header h1 {
  margin-top: 0.25rem;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  line-height: 1.1;
}

p,
ul,
ol,
blockquote {
  margin: 0 0 1.25rem;
}

img {
  max-width: 100%;
  height: auto;
}

code,
pre {
  font-family: "Courier New", monospace;
}

@media (max-width: 640px) {
  .page {
    padding-top: 2rem;
  }

  .post-header h1 {
    font-size: 2rem;
  }
}
