#projets {
    opacity: 0;
    padding-top: 70px;

    transition: opacity 1200ms ease-in-out;
}
#projets h2 {
    font-family: 'Sansita', sans-serif;
    font-size: 96px;
    font-weight: bold;
    color: var(--soft-black);

    text-align: center;
}
#projets #content-projets {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto auto;
    grid-gap: 100px;

    padding-top: 80px;
    padding-bottom: 100px;
}
#projets #text-projets {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--soft-black);

    text-align: justify;
    line-height: 140%;

    transform: translateX(-250px);
    transition: transform 1s ease-in-out;
}
.bold-36 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--soft-black);

    text-align: center;
    line-height: 140%;
}
#projets #maze {
    height: 360px;
    width: auto;
    border-radius: 20px;
    
    transform: translateX(250px);
    transition: transform 1s ease-in-out;
}


/* Video Teaser */
#video-teaser {
    display: grid;
    justify-content: center;
}

#video-teaser > video {
    width: 70vw;
    height: auto;

    display: grid;
    justify-content: center;
    align-items: center;

    border-radius: 20px;
    background-color: var(--soft-black);
    box-shadow: 0px 0px 100px rgba(20, 20, 20, 0.4);
}


/* --- Media queries --- */
@media screen and (max-width: 1200px) {
    #projets #content-projets {
        grid-template-columns: auto;
        grid-gap: 50px;
    
        padding-top: 80px;
        padding-bottom: 100px;
    }
    #projets #maze {
        display: none;
    }
    #projets #text-projets {
        text-align: center;
    }
}