 /* Styles généraux */
* {
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}


/* Styles de la bannière */
.banner {
    text-align: center;
    /* set the size of the banner, the image is 960 x 121 */
    height: 121px;
    background-color: #008000;
    background-image: url("../images/green_banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner h1 {
    /* make the text center vertically and horizontally */
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 50px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}


/* Styles du menu */
.menu {
    background-color: #00a000;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.menu li {
    flex-grow: 1;
    text-align: center;
}

.menu a {
    color: #fff;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: background-color 0.3s;
    display: block;
    background-color: #008000;
}

.menu a:hover {
    background-color: #006400;
}


/* Styles du contenu */
.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
}


/* Styles du footer */
.footer {
    text-align: center;
    background-color: #00a000;
    color: #fff;
    padding: 10px;
    font-size: 14px;
}