*{
    margin: 0;
    border:0;
    box-sizing: content-box;
    background-color: darkgrey;
}

body{
    width: 100wv;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.container-player{
    width: 18rem;
    height: 25rem;
    background-color: darkgrey;
    border-radius: 10px;
    box-shadow: 5px 4px 7px rgb(62, 3, 96);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.container-player > h1 {
    font-size: 2rem;
    color: #dcd5d5;
}
    
.container-album {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    
.container-album > img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    margin: 1rem 0 1rem 0;
}

container-player > .controls {
    width: 100%;
    height: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    }
  
.controls > audio {
    width: 100%;
    height: 2rem;
    margin-top: 1rem;
    }

.player_controls {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    font-size: 2rem;
    cursor: pointer;
}

.player_controls > i:hover{
    color: rgb(0, 115, 255);
}