body {
  margin: 0;
  background-color: #ddd;
  color: #333;
} 

p { 
  font-family: Garamond, serif;
  margin-bottom: 1.2em;
}

header {
  padding: 15px 20px;
  border-bottom: 2px solid #ddd;
  background-color: #222;
  text-align: center;
}

.sub-nav span {
  color: white;
  text-decoration: none;
  padding: 0 10px;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  font-weight: bold;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
}

.sub-nav a {
  color: white;
  text-decoration: none;
  padding: 0 10px;
}

.small-biography-section {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  margin: 20px auto; 
  max-width: 800px;
  text-decoration: none;
}

.small-biography-section h2 {
  margin-top: 0;
}

.small-biography-section ol {
  margin: 1em 0;
  padding-left: 40px;
  text-decoration: none;
}
.small-biography-section ol a {
  text-decoration: none;
  color: inherit;
}

.small-biography-section figure {
  margin: 0;
}

img {
  display: block;
  max-width: 50%;
  height: auto;
  margin: 20px auto 10px;
}

.site-footer {
  background-color: #222;
  color: #F2F2F2;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  width: 22%;
  margin-bottom: 20px;
}

.footer-column h4, .footer-column h5 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.newsletter input {
  width: 100%;
  padding: 8px;
  border: 1px solid #555;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  margin-top: 5px;
}

.newsletter button {
  width: 100%;
  padding: 8px;
  background-color: #555;
  color: #fff;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 0.9em;
  color: #888;
}

.footer-bottom p {
  margin-bottom: 1em;
}

@media (max-width: 768px) {
  .footer-column {
    width: 48%;
  }
}

@media (max-width: 480px) {
  .footer-column {
    width: 100%;
  }
}

figcaption {
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}