.image {
  background-image: url('aabanner2.png');
  background-size: cover;
  background-position: center;
  height: 400px; 
  width: 100%; 
  display: block;
  background-color: #F8F4E3;
  margin-bottom: 20px;
}

.pagename{
  color: #5a5420;
  font-family: IM Fell English SC;
  font-size: 100px;
  text-align: center;
  text-shadow: 
    -1px -1px 0 #2d1909,  
     1px -1px 0 #2d1909,
    -1px  1px 0 #2d1909,
     1px  1px 0 #2d1909;
}

header {
  background-color: #F8F4E3; 
  width: 100%;
  z-index: 10;
}

body {
  background-color: #F8F4E3; /* match site’s background */
}

/* Remove list styling and center items */
.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 1rem; /* space between buttons */
}

/* Style the links as buttons */
.nav li a {
  display: inline-block;
  background-color: #6B9A56; /* accent color */
  color: #2B2B2B;
  font-family: Cabin;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

/* Hover effect */
.nav li a:hover {
  background-color: #7C8C6C; /* secondary accent */
}

.intro {
  background-color: #F8F4E3; 
  color: #2B2B2B;
  font-family: Cabin;
  font-size: 30px;
  margin-top: 20px;
  text-align: center;
}

footer {
  background-color: #F8F4E3;   /* match your site background */
  color: #2B2B2B;              /* readable text color */
  font-family: Cabin, sans-serif;
  text-align: center;
  padding: 20px;
  margin-top: 40px;            /* space above footer */
  font-size: 14px;
}

footer img {
  width: 100px;
  height: 100px;
  display: block;
  margin: 1rem auto; /* centers it */
}