.ConteneurFlex{
    display: flex;
    flex-direction: column;    
}

.Affiche{
    position: relative;
}
    .Affiche-Image{
        width: 100%;
        opacity: 0.85;        
        z-index: -1;
    }
    .Affiche-Texte{
        position: absolute;
        top: 30%;
        width: 100%;
        text-align: center;
        color: white;
        text-shadow: 2px 2px 4px #000000;
        font-size: 3em;
    }

.Annonce {
    width: 80%;
    margin: auto;
    padding: 25px;
    height: 250px;
}
    .Annonce h1{
        color:rgb(75, 75, 75);
    }
    .Annonce p{
    margin-top: 10px;
    font-size: 1.3em;
    line-height: 1.4em;
    color:rgb(100, 100, 100);
    }

.Fonctionnalites{
    width: 65%;    
    min-height: 350px;
    margin: auto;
    padding-top: 15px;
    display: flex;
    flex-direction: row;
}
    .Fonctionnalites img{
        height: 300px;
        border-radius: 15px;
    }
    .Fonctionnalites-Descriptif{
        padding: 50px;
    }
    .Fonctionnalites-Descriptif h1{
        color:rgb(75, 75, 75);
    }
    .Fonctionnalites-Descriptif p{
        margin-top: 10px;
        font-size: 1.3em;
        line-height: 1.4em;
        color:rgb(100, 100, 100);        
    }
    .Fonctionnalites-Bouton {
        text-align: center;
    }

/* Responsive Design */
@media (max-width: 1500px) {
    .Fonctionnalites-Descriptif{
        padding: 25px;
    }
}

@media (max-width: 1300px) {
    .Affiche-Image{
        height: 300px;
    }
    .Affiche-Texte{
        font-size: 2em;
    }

    .Annonce {
        width: 100%;
        height: auto;        
    }
        .Annonce h1{
            text-align: center;
        }
        .Annonce p{        
            font-size: 1.2em;
        }

    .Fonctionnalites{
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
        .Fonctionnalites img{
            height: 75%;
        }
        .Fonctionnalites-Descriptif h1{
            text-align: center;
        }
        .Fonctionnalites-Descriptif p{            
            margin-top: 5px;            
            font-size: 1.2em;            
        }
}