#body_groupes{

    background-color: var(--main_background);
}

.div_groupe{
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.gauche, .droite {
    width : 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vw;

    color : white;
    


}


.gauche p, .droite p{

    font-size: 1.6vw;

    margin-bottom: 3vw;
    overflow-y: hidden;

}

.gauche .souligne, .droite .souligne{

    font-size: 2vw;
    text-decoration: underline;
    margin-bottom: 1vw;
    overflow-y: hidden;

}



.div_groupe h1{
    color: white;
    align-items: center;
    text-align: center;
    font-size: 3vw;

    margin-bottom: 2vw;
    height : 10vw;
    
}

.img_groupes{
    width : 100%;
    height : auto;
}


@media only screen and (max-width: 768px), (orientation: portrait) {

    .gauche p, .droite p{

        font-size: 3.5vw;
    
        margin-bottom: 6vw;
        overflow-y: hidden;
    
    }

    .div_groupe h1{

        font-size: 6vw;
    
        margin-bottom: 2vw;
        height : 23vw;
        overflow-y: hidden;
        
    }

    .gauche .souligne, .droite .souligne{

        font-size: 4vw;
        margin-bottom: 1vw;
    
    }


}