.container-realisations{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.entete-realisations{
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: flex;
    flex-direction: column ;
    /* align-items: center; */
    margin: 5%;
    padding: 20px;
    background-color: rgb(222, 222, 222);
    max-width: 80vw;
}
.entete-realisations h1{
    text-align: center;
    margin-bottom: 20px;
}
.entete-realisations p{
    font-size: 1.2rem;
    line-height: 2rem;
    text-align: left;
    margin: 10px 0;
}
.realisations{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    max-width: 90%;
}
.realisation-item{
    margin: 20px;
}
.realisation-img{
    width: 350px;
    height: 350px;
    margin: 10px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: transform 0.3s ease;
    
}
.realisation-img:hover{
    transform: scale(1.05);
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .entete-realisations p{
        text-align: justify;
    }
}