html,
body {
  font-family: "EB Garamond", serif;
  height: 100%;
  margin: 0;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.nav-separator {
  margin: 0 -0.75rem;
}

.nav-social a {
  margin: 0 0.375rem;
}

@media (max-width: 640px) {
  .nav-social {
    flex-basis: 100%;
    text-align: center;
  }
}

.nav a[aria-current="page"] {
  text-decoration: underline;
}

.content {
  max-width: 40rem;
}

a {
  color: #888;
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover {
  color: #111;
}

.nav a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav a:hover {
  border-bottom-color: #333;
}

.essay {
  white-space: pre-line;
  text-align: left;
}

.bio {
  font-size: 18px;
}