#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/UTXJzfg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.artist-card{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
}

.poster-reves{
    margin: 0 !important; 
}

.card-left, .card-right{
    width: 49%;
}

.card-left>.container-photo, .card-right>.container-photo, .card-left>video, .card-right>video{
    width: 100%;
}

.card-left>a, .card-right>a{
    width: 100%;
}

a>img{
    width: 100%;
}

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

.bento-left>.card-right, .bento-right>.card-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hidden-pc{
    display: none;
}


/* RESPONSIVE */

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

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

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

@media only screen and (max-width: 768px){
    .hidden-mobile{
        display: none;
    }

    .hidden-pc{
        display: block;
    }

    .card-left, .card-right{
        width: 100%;
    }
}

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

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


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

