body {
  margin: 0;
  color: #abb6c3;
  background-color: #0d1b2a;
  font-size: 1.25rem;
  line-height: 2rem;
  font-family: Optima, Candara, 'Noto Sans', source-sans-pro, sans-serif;
}

.main {
  display: flex;
  max-width: 60rem;
  margin: 5rem auto;
  flex-direction: column;
  padding: 0 1rem;
}

a {
  color: #abb6c3;
}

.title {
  display: flex;
  align-items: center;
  color: #e0e1dd;
}

.title-text {
  font-family: Baskerville, Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;
  font-weight: normal;
  font-size: 3rem;
  margin: 0 0 0 0.5rem;
}

.header {
  margin-bottom: 1rem;
}

.header-image {
  max-width: 100%;
}

.names {
  color: #e0e1dd;
}

.item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.item.show {
  opacity: 1;
}
