body {
    margin: 0;
    padding: 0;
}

header {
    margin: 0;
    padding: 0;
}

nav ul {
    text-align: center;
    z-index: 1;
    position: relative;
    top: 0;


}

nav ul li {
    display: inline-block;
    margin: 20px;

}

nav ul li a {
    color: black;
    padding: 15px;
    color: white;

    font-size: 25px;
}

nav ul li :hover {
    background-color: rgba(255, 255, 255, 0.877);
    color: rgb(8, 80, 20);
    border-radius: 25px;

}

.rectangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #0d3305cb;
}

p {
    text-align: center;
}

.titre_page {
    text-transform: uppercase;
    font-size: 24px;
    padding-top: 3%;
}



.rectangle_2 {
    position: absolute;
    margin: auto;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center;
    width: 70%;
    height: 70%;
    background-color: #0d3305cb;
    border-radius: 5%;
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    /* ajustez la largeur selon vos besoins */
    margin: auto;
    margin-top: 5%;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    width: 100%;

    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10%;
}

button {
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    width: 120px;
    margin-right: 10px;
    background-color: #6E9562;
    border-radius: 30%;
}


footer {
    width: 100%;
    background-color: #0d3305;
    padding-top: 2%;
    padding-bottom: 2%;
}

footer a {
    color: white;
    margin-left: 15px;
    height: 15px;
}