#app{
    background-color: var(--black);
    color: var(--white);
}
.reves-page-main{
    color: var(--white);
}

.poster-reves{
    width: 800px;
    display: flex;
    align-self: center;
}

.artists-list{
    margin: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10%;
}

.logo-jaj{
    width: 200px;
}

.artists-list p{
    font-size: 30px;
    text-align: center;
}

/* ARCHIVES */
.archives{
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.archives-photos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.artists-list>p>a{
    color: var(--white);
}

.artists-list>p>a:hover{
    text-decoration: underline;
}

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

/* RESPONSIVE */
@media screen and (max-width: 1024px){
    .logo-jaj{
        width: 150px !important;
    }
    .artist-card>div>img{
        height: 60px !important;
        margin: 10px 20px !important;
    }
    
}

@media screen and (max-width: 900px){
    .logo-jaj{
        width: 100px !important;
    }
    .artist-typo>a>img{
        height: 50px  !important;
    }
    
}

@media screen and (max-width: 768px){
    .artist-typo{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .artist-typo>a>img{
        height: 40px !important;
    }
}

@media screen and (max-width: 500px){
    .artists-cards img{
        width: 300px !important;
    }
}

