body {
    background-image: linear-gradient(45deg, #3762f7 0%, #ffffff 100%);
}

.carteProjet {
    width: 540px;
    height: 300px;
    position: relative; 
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 0 15px black;
    transition: transform 0.3s ease-out; 
    &:hover{
        transform: scale(1.1);
    }
}

.miniature {
    object-fit: cover; 
    width: 100%;
    height: 100%;
}

.conteneurTitreProjet {
    position: absolute;
    bottom: 0;
    left: 0;
    
    height: 20%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);

    display: flex;
    justify-content: center;
    align-items: center;
}

.conteneurTitreProjet h3 {
    color: white;
    margin: 0; 
    text-align: center;
    padding: 0 10px;
}

#sectionProjets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    width: fit-content;
    margin: 0 auto;
}

@keyframes shine-effect {
    0% {
        background-position: 200% 0; 
    }
    100% {
        background-position: -200% 0; 
    }
}

#winter-arc-title {
    width: 100%;
    background: 
        linear-gradient(
            -45deg,
            transparent 40%, 
            rgba(255, 255, 255, 0.7) 50%,
            transparent 60%
        ),
        
        linear-gradient(
            to right,
            #46a6c1 0%,
            #275b69 50%,
            #ffffff 100%
        );

    background-size: 200% 100%, 100% 100%;
    
    background-repeat: no-repeat; 
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    animation: shine-effect 5s infinite linear;
}


@keyframes shine-effect {
    0% {
        background-position: 300% 0; 
    }
    100% {
        background-position: -300% 0; 
    }
}