#app{
    position: relative;
    z-index: 1;
}

#app::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://i.imgur.com/pvk3guO.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.artist-card, .video-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.artist-card>.container-photo, .video-container>video{
    width: 49%;
}

.container-photo>a, .container-photo>a>img{
    width: 100%;
    display: block;
}

.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);
}

/* RESPONSIVE */

@media only screen and (max-width: 1200px){
    #app::before{
        background-image: url("https://i.imgur.com/kDYUDm3.png") !important;
    }
}

@media only screen and (max-width: 1024px){
    #app::before{
        background-image: url("https://i.imgur.com/Lr2DF0H.png") !important;
    }
}

@media only screen and (max-width: 900px){
    #app::before{
        background-image: url("https://i.imgur.com/rRKJ1z7.png") !important;
    }
}

@media only screen and (max-width: 768px){
    #app::before{
        background-image: url("https://i.imgur.com/rRKJ1z7.png") !important;
    }
    .hidden-mobile{
        display: none;
    }
    .artist-card{
        margin: 10px 0;
    }
    .container-photo{
        width: 100% !important;
    }
    .video-container{
        display: flex;
        flex-direction: column;
        margin: 0;
    }

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

@media only screen and (max-width: 500px){
    #app::before{
        background-image: url("https://i.imgur.com/YZUplFG.png") !important;
    }
}


@media only screen and (max-width: 430px){
    #app::before{
        background-image: url("https://i.imgur.com/YZUplFG.png") !important;
    }
    
}

@media only screen and (max-width: 360px){
    #app::before{
        background-image: url("https://i.imgur.com/APesxaf.png") !important;
    }
}


@media only screen and (max-width: 320px){
    #app::before{
        background-image: url("https://i.imgur.com/hhuMq09.png") !important;
    }
}