.bloc-projects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    row-gap: 40px; /* Augmenté pour laisser de la place à l'agrandissement */
    margin-top: 18px;
}

.title-project {
    font-size: 1.8em;
    color: var(--white-green);
    font-weight: 700;
    position: relative;
    width: fit-content;
}

.title-project::before {
    content: "";
    position: absolute;
    right: -5px;
    bottom: 8px;
    width: 105%;
    height: 12px;
    background-color: black; /* Ou une couleur contrastée */
    opacity: 0.3;
    z-index: -1;
    transform: rotate(1deg);
    border-radius: 2px;
}

#projects {
    padding-top: 75px;
}


