.audio-player-css{
    display: flex;
    justify-content: center;
    padding: 10px;
}
.player-buttons{
    height: 90px;
    width: 500px;
    display: grid;
    justify-content: center;
    padding: 5px;
}


.play-button-image{
    width: 40px;
    height: 40px;
    background-color: black;
    border: 1px solid white;
    border-radius: 50%;
    display: inline;
    cursor: pointer;
}
.pause-button-image{
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    display: none;
    cursor: pointer;
}


.pause-play-button{
    display: flex;
    padding-bottom:5px ;
    justify-content: center;
}

