#lineup{
    background-image: url("../img/cielo.jpg");
    background-repeat: repeat-y;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px;
}

article .picture{
    text-align: center;
}

article .picture img{
    /*cursor: pointer;*/
    max-width: 350px;
}

article .artist-name{
    margin-top: 2%;
    font-size: 40px;
    text-transform: uppercase;
    font-family: "WalsheimUltraBold";
    text-align: center;
    text-decoration: underline;
}

#lineup > div{
    
    display: grid;
    grid-template-columns: auto auto auto;
    justify-items: center;
    margin: 0 auto;
    width: 90%;
}

#lineup > .full {   
    display: flex;
    flex-direction: column;
    margin-top: 3%;
    margin-bottom: 3%;
}

#img-salon {
    max-width: 50%;
    margin: auto;
    margin-bottom: 3%;
}

.line-text{
    background-color: var(--amarillo);
    border: black solid 2px;
    border-radius: 25px;
    display: block;
    font-family: var(--font1);
    font-size: 24px;
    padding: 5px 0px;
    text-align: center;
    text-transform: uppercase;
    margin: -18px auto 0px auto;
    max-width: 220px;
    margin-bottom: 2%;
}

.sublineup{
    font-size: 40px;
    text-transform: uppercase;
    font-family: "WalsheimUltraBold";
    text-align: center;
    margin-top: 30px;
}

.little-circle{
    font-size: 10px;
    line-height: 40px;
    vertical-align: middle;
}

#ojo-1-sky{
    display: block;
    position: absolute;
    left: 2%;
    transform: rotate(-15deg);
    top: 840px;
    width: 60px;
}

#ojo-2-sky{
    display: block;
    position: absolute;
    left: 90%;
    transform: rotate(-65deg);
    top: 340px;
    width: 90px;
}

#lineup article{
    padding: 20px 30px;
}

#lineup article:nth-child(10){
    grid-column: 2/3;
}

.artist-info{
    display: none;
    max-height: 0px;
    transition: all 0.3s;
    max-width: 350px!important;
}

.artist-info .at{
    display: block;
    font-family: var(--font3);
    font-size: 18px;
    text-transform: uppercase;
}

.artist-info .detail{
    display: block;
    font-family: var(--font3);
    font-size: 16px;
    text-transform: uppercase;
}

.artist-info a{
    display: block;
    background-color: black;
    border: 2px solid var(--amarillo);
    border-radius: 25px;
    color: var(--amarillo);
    font-family: var(--font2);
    font-size: 18px;
    margin: 15px auto;
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
    padding: 5px 25px;
    max-width: 250px;
    transition: all 0.3s;
}

.artist-info a:hover{
    border: black 2px solid;
    background-color: var(--amarillo);
    color: black;
}

.artist-info p{
    font-family: var(--font4);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 30px;
}



@media screen and (max-width:500px){

    #img-salon {
        max-width: 100%;
        margin: auto;
        margin-bottom: 3%;
    }

    #ojo-1-sky, #ojo-2-sky{
        display: none;
    }

    #lineup{
        margin-top: 0;
        padding: 50px 10px;
    }

    #lineup > div{
        grid-template-columns: auto;
    }

    #lineup article{
        padding:20px 10px;
    }

    #lineup article:nth-child(10){
        grid-column: 1/2;
    }

    article .picture img{
        /* max-width: 280px; */
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
        width: 100%;
    }

    #white-banner-cta{
        flex-flow: column;
        padding: 70px 0;
    }

    #white-banner-cta span{
        font-size: 25px;
    }

    #white-banner-cta a{
        margin-top: 20px;
    }
    
}