body {
  background-color: #cbccab; /* Beige */
  color: #2e2e1f; /* Dark olive-gray for strong contrast */
  font-family: system-ui, sans-serif;
  line-height: 1.6;
    display: flex;
  flex-direction: column;
}

a {
  color: #5a6b1f; /* Olive green - stands out but stays earthy */
  text-decoration: underline;
}

a:visited {
  color: #7a4d1f; /* Warm russet brown - distinct but still harmonious */
}

a:hover,
a:focus {
  color: #2e2e1f; /* Match main text for emphasis */
  text-decoration: none;
}

/* what images do */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Centered content wrapper */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  padding-bottom: 5rem; /* Extra space so content doesn't hide under footer */
}

/* Footer */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2e2e1f;
  color: #cbccab;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  z-index: 1000;
}

footer a {
  color: #cbccab;
  text-decoration: underline;
  margin: 0 0.5rem;
}

footer a:hover,
footer a:focus {
  color: #e0e38d; /* A soft yellow-green highlight */
  text-decoration: none;
}