* {
    font-family: Arial, Helvetica, sans-serif;
}


/*Flexbox del audio*/
.own-player {
    display: flex;
    flex-shrink: 0;
    width: 40%;
    height: 50px;
    margin: auto;
    padding: 15px;
    
    border: 1px solid lightgray;
    border-radius: 50px;
    background-color: rgb(230, 230, 230);
    box-shadow: 2px 2px 5px gray;
}




/*Boton de pausa/reanudar*/
.pause_button {
    display: block;
    height: 100%;
    width: max-content;
}

button {
    height: 50px;
    width: 50px;
    text-align: center;
    background-color: lightgray;
    border: none;
    border-radius: 90px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.1s ease-out;
    box-shadow: 1px 1px 3px gray;
}

button:hover {
    background-color: rgb(175, 175, 175);
}

button i {
    font-size: 20px;
    color: #2b2b2b;
}



/*Linea de audio*/
.audio-content {
    display: block;
    width: 80%;
}

/*Bloques donde almaceno el tiempo*/
.time {
    font-size: large;
    padding: 5px;
    margin: auto;
}
