/* style/site.css */

body {
  font-family: Georgia, serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

h1, h2, h3 {
  color: #2c3e50;
  margin-top: 0;
}

footer {
  text-align: center;
  margin-top: 4rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: #777;
}

.media-centered {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto;
  max-width: 100%;
}

.media-centered iframe,
.media-centered img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

