body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  background-color: #f7f7f7;
  color: #333;
}

header {
  background-color: #896279;
  color: white;
  padding: 2rem;
  text-align: center;
}

nav {
  background: #9C7CA5;
  text-align: center;
  padding: 0.5rem;
}

nav a {
  margin: 0 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background: white;
}

section {
  margin-bottom: 2rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #896279;
  color: white;
}

figure {
  max-width: 100%;
  margin: 1rem auto;
  text-align: center;
}

figure img {
  width: 100%;           /* Make the image fill the figure container */
  height: auto;          /* Maintain aspect ratio */
  max-width: 400px;      /* Cap at 600px on large screens */
  display: block;
  margin: 0 auto;
}


figcaption {
    font-size: small;
}

.form_element {
  width: 100%;
  margin: 1rem 0;
  padding: 0.5rem;
  border-radius: 8px;
}