﻿.Title1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top : 50px ; 
    margin-bottom: 50px;
}


    .Title1 p {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 2.6em;
        font-weight: bold;
        color : rgb(243, 167, 9)
    }






.Composant {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}


.Composant p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2em;
    text-align : center ; 
    line-height : 1.6em ; 
}

.Composant p.ComposantTitle {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
    margin-bottom :12px ; 
}


.GalleryContainer{
    margin-top : 90px ; 
    margin-bottom : 150px ; 
}



.GalleryContainer .Container .GalleryGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 90px;
    grid-column-gap: 40px;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}


/*.GalleryItem {
    display: inline-block ; 
    width : auto  ; 
}*/



.GalleryGrid .GalleryItem  {
    background : rgba(128, 128, 128,0.1) ; 
}


.GalleryGrid .GalleryItem img {
    
    width: 400px;
    height: auto;
    max-height : 600px ; 
}

    .GalleryGrid .GalleryItem p {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1.6em;
        font-weight :500 ; 
        padding: 18px;
        color: rgb(243, 167, 9)
    }

@media  (max-width: 920px) {
    .GalleryContainer .Container .GalleryGrid {
        grid-template-columns: 1fr ;
    }
}
    

