:root {
  --bg: #f7f4ef;
  --text: #1c1b19;
  --muted: #5e5a54;
  --link: #7a341f;
  --link-hover: #4e1f12;
  --rule: #ddd6cc;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

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

.wrap {
  max-width: 38rem;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 4rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  margin: 0;
  font-size: 2.15rem;
  font-weight: normal;
  letter-spacing: 0.02em;
}

.links {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.links li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}

.item-title,
.item-desc,
.item-date {
  margin: 0;
}

.item-title {
  font-size: 1.12rem;
}

.item-desc {
  margin-top: 0.25rem;
}

.item-date {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
  color: var(--link-hover);
}

footer {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--muted);
}

.quote {
  margin: 0;
  font-style: italic;
}

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

  h1 {
    font-size: 1.7rem;
  }
}
