body {
  font-family: system-ui, sans-serif;
  background-color: blanchedalmond;
}

h1, h2, h3, p, figcaption {
  font-family: "Inter", sans-serif;
}

button {
    background-color: #2e7d32;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background-color: #256628;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

button:active {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

figure {
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
}

figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

footer {
  background: #f5f5f5;
  padding: 30px 20px;
  margin-top: 40px;
  text-align: center;
}

.footer-nav {
  margin-top: 10px;
}

.footer-nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #2e7d32;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}