html {
  background-color: #f9f5fe;
  font-family: monospace;
  box-sizing: border-box;
}

article {
  font-size: 20px;
  line-height: 1.3;
  font-family: serif;
}

a {
  color: inherit;
}

a:hover {
  background-color: rgba(255, 255, 0, 0.4);
}

.index {
  margin: auto;
  text-align: center;
  max-width: 800px;
}

.index hr {
  border-top: 1px dotted purple;
}

.article-list {
  font-weight: 700;
}

.banner-img {
  max-width: calc(min(600px, 90%));
  max-height: 100%;
  image-rendering: pixelated;
  padding: 20px;
}

li {
  list-style-type: none;
  line-height: 2rem;
}

.greeting h1 {
  text-align: center;
}

.article-title {
  text-align: center;
}

.article-metadata {
  display: block;
  text-align: center;
}

.article-content {
  max-width: 800px;
  margin: auto;
  padding: 0 10px;
  color: black;
}

.top-nav {
  border: 1px solid #eeeeee;
  padding: 10px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
}

.top-nav div {
  display: flex;
  gap: 20px;
}

.top-nav a {
  text-decoration: none;
}

.quote {
  max-width: 400px;
  margin: auto;
  color: rgb(0, 92, 0);
  font-size: 0.8rem;
}

.quote-display {
  font-style: italic;
  margin-bottom: 0;
  white-space: pre-wrap; /* Display multi-line quotes */
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.quote-author {
  text-align: right;
}
