/* Base */

:root {
      --beige: #f8f4ec;
      --text: #2e2e2e;
    }
body {
  margin: 0;
  padding: 2rem;
  font-family: 'Inter', sans-serif;
  background-color: var(--beige);
  color: var(--text);
  line-height: 1.6;
  max-width: 700px;
  margin-inline: auto;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
a {
  color: var(--text);
  text-decoration: underline;
}
.bold {
  font-weight: 600;
}
nav {
  margin-bottom: 2rem;
}

/* Article list on journal.html */

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 1.5em;
}

ul li small {
  color: #666;
  font-size: 0.9em;
}

/* Meta info in article */

.meta, time, small {
  color: #777;
  font-size: 0.9em;
  font-style: italic;
}

/* Footer */

footer {
  margin-top: 4em;
  font-size: 0.9em;
  color: #888;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 2em;
}
