/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');

main {
    /* Center elements */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;

    margin: 0 15%;
}

div.title {
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: 0;
}

div.title h1 {
    color: #af192f;
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    font-family: 'Anton', sans-serif;
}

div.title h2 {
    font-size: 20px;
    line-height: normal;
    margin: 0;
    font-family: 'Cabin', sans-serif;
}

div.back-image {
    /* Fondo */
    background-image: url("../images/cute-dj-woman-having-fun-playing-music-at-club-par-PV3Y5GG.jpg")!important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    background-size: cover;

    /* Full width elements */
    min-height: 100vh;
    display: flex;
    flex-flow: column;
}

div.iframe-container {
    width: 100%;

    display: flex;
    align-items: center;
    flex-flow: column;

    text-align: center;
    background: rgba(175, 25, 47, .8);
    padding: 15px;
    border-radius: 10px;

    box-shadow: 0px 10px 20px 0px rgb(62 12 19);
}

div.social-media {
    display: flex;
    margin-top: 10px;
}

div.social-media a {
    margin: 0 10px;
}


/* Iframe styles */
.boxed-container {
    box-shadow: none!important;
}

.nowplay {
    margin-left: 35px;
}

div.row {
    display: none;
    width: 100%;
}

@media (max-width: 850px) {

    iframe {
        /*display: none;*/
    }

    /* reproductor mobile */

    main {
        margin: 0 5%;
    }

    div.row {
        display: flex;
        border-radius: 10px;
        background-color: #f4f4f4;
    }

    div.row div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    div.row div:nth-child(1) {
        padding: 0;
    }

    div.row img {
        width: 100%!important;
        border-radius: 10px 0 0 10px;
    }

    div.row i {
        font-size: 8vw;
        color: #000;
    }
    
}