#app{
    background-color: black;
}

.artists-presentation{
    width: 800px;
    display: flex;
    align-self: center;
}

/* ARTISTES */
.artists-list{
    margin: 5% !important;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.artists-list img{
    width: 600px;
}

.artists-list h2{
    font-size: 40px;
    margin: 10px;
    color: var(--blue);
}

.beatmakers{
    display: flex;
    align-self: center;
    margin-top: 10%;
    width: 80%;
}

.beatmakers img{
    width: 200px;
    align-self: center;
    margin-bottom: 20px;
}

.beatmakers a{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    margin: 30px;
    width: 30%;
}

.beatmakers a>h2{
    font-size: 32px;
}
.archives h2{
    font-size: 40px;
    margin: 10px;
    color: var(--blue);
    align-self: center;
}
.archives>div{
    display: flex;
    flex-direction: row ;
    flex-wrap: wrap;
    justify-content: center;
}
.archives>div>img{
    width: 40%;
}

.archives-photos{
    width: 100%;
}

.archives-photos>.video-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.video-container>video{
    width: 45%;
    margin: 10px;
}

.reves7-left{
    display: flex;
    align-self: flex-start;
    align-items: center;
}

.reves7-right{
    display: flex;
    align-self: flex-end;
    align-items: center;
}


@keyframes decalageHaut {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes decalageBas {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
    
}

.beatmakers a:hover img, .reves7-right:hover img, .reves7-left:hover img{
    animation: decalageHaut 0.5s ease-in-out forwards;
}

.beatmakers a img:not(:hover), .reves7-right:not(:hover) img, .reves7-left:not(:hover) img{
    animation: decalageBas 0.5s ease-in-out forwards;
}

.remerciements h1, .remerciements p, .credits h1, .credits p, .credits a, footer p, footer a, .archives h1, .date-place p, .navigation-main>a{
    color: var(--white);
}

.txt-mobile{
    display: none;
}

/* RESPONSIVE */
@media screen and (max-width: 1400px){
    .artists-list h2{
        font-size: 30px;
    }
    .artists-list img{
        width: 500px;
    }
    .beatmakers img{
        width: 100px;
    }
}

@media screen and (max-width: 1200px){
    .artists-list h2{
        font-size: 25px;
    }
    .artists-list img{
        width: 400px;
    }
    .beatmakers img{
        width: 80px;
    }
}

@media screen and (max-width: 1024px){
    .artists-list img{
        width: 300px;
    }
    .beatmakers img{
        width: 80px;
    }

    .beatmakers{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media screen and (max-width: 900px){
    .reves7-left, .reves7-right{
        flex-direction: column;
        align-items: center;
        align-self: center;
        margin-bottom: 20px;
    }
    .txt-mobile{
        display: block;
    }
    .txt-desktop{
        display: none;
    }

    .video-container>video{
        width: 100%;
    }
}

@media screen and (max-width: 500px){
    .artists-list h2{
        font-size: 20px;
    }
}