#app{
    position: relative;
    z-index: 1;
    color: var(--blue);
    overflow-x: hidden;
}

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

.artists-list{
    margin: 5%;
    color: var(--blue);
    display: flex;
    flex-direction: column;
}

.artists-list>div{
    width: 100%;
    display: flex;
}

.artists-list>div>.container-photo{
    width: 49%;
    overflow: hidden;
}

.video-container>video{
    width: 49%;
    margin: 1px;
}

.container-photo>img{
    width: 100%;
}

.artists-list a{
    color: var(--blue);
    white-space: nowrap;
    margin-bottom: 20px;
}

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

.artists-list h2>a>img{
    height: 30px;
    width: auto;
}

.artist-card{
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.texte-anniv{
    font-size: 25px !important;
    margin: 5% 0;
    text-align: center;

}

.card-left{
    align-self: flex-start;
}
.card-left h2{
    position: relative;
    left: 5%;
}
.card-right{
    align-self: flex-end;
}
.card-right h2{
    position: relative;
    right: 5%;
}

.artist-card>.container-photo{
    width: 100%;
}

.txt-mobile{
    display: none;
}

.fleurs img{
    width: 100%;
}

/*RESPONSIVE*/
@media screen and (max-width: 1400px){
    .artist-card{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .card-left, .card-right{
        align-self: center;
    }

    .card-left h2, .card-right h2{
        align-self: center;
        position: static;
        left: 0;
        right: 0;
        margin: 20px 0;
    }

    .txt-mobile{
        display: block;
        text-align: center;
    }

    .txt-desktop{
        display: none;
    }
}

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

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

@media screen and (max-width: 768px){
    .artists-list img{
        width: 480px;
    }
    .artists-list h2{
        font-size: 30px;
    }
    .artist-card{
        margin-top: 10px;
    }

    .artists-list>div{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .container-photo, .video-container>video, .container-photo>img{
        width: 100% !important;
    }
    #app::before{
        background-image: url("https://i.imgur.com/QuPbXEW.png") !important;
    }
}

@media screen and (max-width: 500px){
    .artists-list img{
        width: 350px;
    }
    .artists-list h2{
        font-size: 20px;
    }
    #app::before{
        background-image: url("https://i.imgur.com/QuPbXEW.png") !important;
    }
}

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

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