#projects_section {
    margin-top: 100px;
    background-color: #130f40;
}

.content_project {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75%;
    max-width: 1200px;
    margin-top: 50px;
}

.content_project_div span {
    color: white;
}

#title_projects {
    color: white;
}

.gif {
    border-radius: 15px;
    width: 600px;
    height: 285px;
}

.content_project_div {
    background-color: #130f40;
    margin-left: 35px;
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);

}

.content_title {
    font-weight: 600;
}


.content_project_lg_link {
    display: grid;
    grid-template-columns: auto max-content;
    align-items: center;
}

.content_project_lg_link img {
    margin-left: auto;
    width: 30px;
    height: 30px;
}

.list_techno {
    display: flex;
    flex-wrap: wrap;
    color: white;
}

.techno {
    background-color: #6cc2ae;
    padding: 5px;
    border-radius: 5px;
    margin-right: 5px;
    color: white;
}

.list_techno a {
    margin-bottom: 5px;
}

.project_date_type {
    margin-left: 50px;
    font-size: 13px;
    color: #F8DE22;
}

@media screen and (max-width:900px) {
    .gif {
        display: none;
    }

    .content_project_div {
        margin-left: 0px;
        align-items: center;
        background-size: cover;
        box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
        background-blend-mode: multiply;
        /* Mélange avec la couleur de fond */
        background-color: rgba(0, 0, 0, 0.7);
        /* Couleur noire semi-transparente */
    }

    .content_project_text {
        margin-right: 3px;
    }
}