body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #946262;
}

header {
  text-align: center;
}

h1 {
  color: #286745;   
  margin: 1.5rem 0 1rem;
}

h2 {
  color: #946262;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav a:link {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:visited {
  color: #402588;
}

nav a:hover {
  color: #0077cc;
}

nav a:active {
  color: #b86127;
}

main {
  max-width: auto;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h2 {
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
}

.banner-top {
  width: 100%;
  height: 200px;
  background-image: url("images/banner.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
}

.banner-bottom {
  width: 100%;
  height: 200px;
  background-image: url("images/banner2.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
}

footer {
  text-align: center;
  margin-top: 3rem;
}

footer p {
  padding: 1rem 0;
  font-size: 0.9rem;
}


