body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #F1EFC8; /* Updated background color */
    color: #333;
    font-size: 18px; /* Larger text */
}

header, footer {
    background: #0F4415; /* Header and footer band color */
    color: #fff;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px; /* Larger text */
}

main {
    padding: 20px;
    text-align: center; /* Center the content */
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

h2 {
    font-size: 24px;
    margin: 5px 0;
}

.small-image {
    display: block;
    margin: 20px auto;
    max-width: 25%; /* Further reduce image size */
    height: auto;
    object-fit: cover; /* Ensure the image fills its container */
}

footer {
    text-align: center;
    position: fixed; /* Change position to fixed */
    width: 100%;
    bottom: 0;
    background: #0F4415; /* Change background color */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove margin */
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px; /* Larger text */
}
