
html, body{
    margin: 0;
    height: 100%;
    width: 100%;

    font-family: gilroy;
}

#c{
    width: 100%;
    height: 100%;
    position: fixed;
}

.controls{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 110;
    background-color: rgba(255, 255, 255, 0.336);
    border-radius: 30px 0px 0px 0px;
}

.more-info{
    position: fixed;
    right: 0;
    top: 0;
    color: black;
    z-index: 100;
    padding: 1%;
    font-size: 4vmin;
    cursor: pointer;
}


.popup{
        background:rgba(0, 0, 0, 0.925);
        color: white;
        cursor:pointer;
        display:none;
        height:100%;
        position:fixed;
        text-align:center;
        top:0;
        width:100%;
        z-index:10000;
    }

.popup p{
    font-size: 2em;
}
.popup i{
    font-size: .75em;
}

.popup .attr{
    font-size: 1.5em;
}
.popup .attr{
    font-size: 1.8em;
}

.popup .helper{
    display:inline-block;
    height:100%;
    vertical-align:middle;
}

.popup > div {
    display: inline-block;
    height: auto;
    max-width: 100%;
    min-height: 100px;
    vertical-align: middle;
    width: 60%;
    position: relative;
    border-radius: 8px;
    padding: 15px 5%;
} 


.pp-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    text-align: center;
}

#play-pause{
    font-size: 5vmin;
    cursor: pointer;
}

#play-text{
    text-decoration: underline;
    cursor: pointer;
}

#pp-text{
    font-size: 3vmin;
}

.params{
    position: fixed;
    background-color: rgba(255, 255, 255, 0.596);
    border-radius: 0px 0px 30px 0px;
    padding: 1%;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    z-index: 100;
}



#start-text{
    position: fixed;
    text-align: center;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.tag{
    position: fixed;
    font-weight: bold;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}



/* MOBILE SCREENS */
@media only screen and (max-width: 768px) {

    .desktop{
        display: none;
    }

    .more-info{
        font-size: 8vmin;
    }

    #toggle-controls{
        position: fixed;
        top:0;
        left: 0;
        z-index: 100;
        margin: 2%;
        margin-left: 4%;
    }

    .controls{
        z-index: -1;
    }

    .params{
        display: none;
    }

    #start-text{
        position: fixed;
        text-align: center;
        width: 100%;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
    }

    #play-pause, #pp-text{
        font-size: 10vmin;
        cursor: pointer;
    }

    .tag{
        position: fixed;
        font-weight: bold;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;            
    }
}




/* DESKTOP SCREENS */
@media only screen and (min-width: 768px) {

    .params{
        position: fixed;
        background-color: rgba(255, 255, 255, 0.596);
        border-radius: 0px 0px 30px 0px;
        padding: 1%;
        display: flex;
        flex-direction: column;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .phone{
        display: none;
    }
}
