body {
  max-width: 40em;
  margin: 0 auto;
  padding: 10px;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6em;
  color: #1C1C1C;
  background-color: #FAF8F7;
}
h1, h2, h3 {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
}

a:link {
  color: #3B3BAD;
  text-decoration: none;
}

a:visited {
  color: #3B3BAD;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.grid {
  display: flex;
  justify-content: center; /* Centers items horizontally */
  align-items: center; /* Centers items vertically */
  flex-wrap: wrap; /* Allows wrapping into a 2x2 grid */
  gap: 10px; /* Controls spacing between grid items */
}

.custom-divider {
    width: 65%;
    margin: 30px auto;
    border: none;
    height: 1px;
    background-color: #aaaaaa;
}

.center {
    display: block;
    margin: 30px auto;
    max-width: 500px;
    width: 100%;
    height: auto;
}