body {
    overflow-y: scroll;


}

@keyframes monAnimation {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bandeau {
    animation: monAnimation 1s ease-out;
}

.separator {
    animation: monAnimation 1s ease-out;
}




.bandeau {
    background-image: url(../images/annie-spratt-8nb04vuDKSA-unsplash.jpg);
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.separator {
    border-top: solid 3px;
    /* Bordure supérieure de 3 pixels, en pointillés et bleue */
    margin: 15px 0;
    width: 80%;
    /* Réduit la largeur de la ligne */
}

.sidebar {
    background-color: #f0f0f0;
    width: 200px;
    /* Largeur de la sidebar */
    padding: 20px;
    box-sizing: border-box;
    /* Inclure le padding et la bordure dans la largeur */
}

.sidebar h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    text-decoration: none;
    color: #333;
    display: block;
    /* Rendre les liens cliquables sur toute la largeur */
    padding: 8px 0;
}

.sidebar a:hover {
    color: #007bff;
    /* Couleur au survol */
}

.content {
    flex-grow: 1;
    /* Prend l'espace restant */
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .sidebar {
        width: 100%;
        /* La sidebar prend toute la largeur sur les petits écrans */
        padding: 10px;
    }

    .bandeau {
        height: 200px;
        /* Réduit la hauteur du bandeau sur les petits écrans */
        font-size: 1.5em;
    }

    .content {
        padding: 10px;
    }

    iframe {
        width: 100%;
        /* Les iframes prennent toute la largeur sur les petits écrans */
        height: 300px;
    }

}