/* section projet */
    .container_projet{
        width: max-content;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    .content_projet{
        flex: 0 0 320px;
        border-radius: 16px;
    }

    .box_img_projet{
        width: 100%; height: 200px;
        border-radius: 16px;
        overflow: hidden;
        img{
            width: 100%; height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }
    }   
    
    .content_projet:hover img{
        scale: 1.1;
    }

    .info_projet{
        padding: 8px;
    }

    .titre_projet{
        font-size: 18px;
        padding-bottom: 12px;
    }

    .titre_projet:hover{
        color: var(--yellow);
    }
/* section projet */

/* responsive */
    /* section projet */
        @media screen and (max-width: 450px) {
            .content_projet{
                flex: 0 0 90%;
            }
        }
    /* section projet */
/* responsive */