/* General body styling */
body {
    background-color: #f7f4e9; /* Soft beige */
    color: #2e4a24; /* Deep green */
    font-family: 'Arial', sans-serif;
    margin: 10px;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: #a3c686; /* Sage green */
    color: #ffffff; /* White */
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Navigation bar styling */
nav {
    background-color: #8aa878; /* Olive green */
    padding: 10px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #ffffff; /* White */
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #6d8a5e; /* Dark olive green */
}

/* Main content styling */
main {
    padding: 20px;
    background-color: #ffffff; /* White */
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

main h2 {
    color: #415d35; /* Forest green */
    border-bottom: 2px solid #a3c686; /* Sage green */
    padding-bottom: 5px;
    margin-bottom: 20px;
}

main p {
    margin-bottom: 15px;
}

/* Figure and image styling */
figure {
    text-align: center;
    margin: 20px 0;
}

figure img {
    max-width: 100%;
    height: auto;
    border: 2px solid #a3c686; /* Sage green */
    border-radius: 5px;
}

figcaption {
    font-size: 0.9em;
    color: #6d8a5e; /* Dark olive green */
}

/* Footer styling */
footer {
    background-color: #a3c686; /* Sage green */
    color: #ffffff; /* White */
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9em;
}

footer a {
    color: #ffffff; /* White */
    text-decoration: underline;
}

footer a:hover {
    text-decoration: none;
}
