*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Poppins','sans-serif';
}
.container{
    background: rgb(94, 12, 235);
    height:100%;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: wrap;

}
.box{
    width:400px;
    background-color: rgb(247, 255, 237);
    margin-top: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    padding:15px 35px;
    text-align: center;   
}
nav{
    display:flex;
    justify-content:space-between;
    margin-bottom: 30px;
}
nav .circle{
    border-radius: 50%;
    background-color: rgb(19, 75, 173);
    font-size: 22px;
    height: 40px;
    color:#fff;
    width:40px;
    line-height: 40px;
    box-shadow: 0 5px 10px rgba(255,26,26,0.22);
    
}
.music_img{
    height:220px;
    width:220px;
    border-radius: 50%;
    border:8px rgb(17, 20, 211) solid;
    background-repeat: none;
    background-size: cover;
    background-position: center;
}
.box h1{
    font-size: 20px;
    font-weight:400;
    color:#333;
    margin-top:20px;
}
.box p{
    font-size: 14px;
    color:#333;
}
#progress{
    -webkit-appearance: none;
    width:100%;
    height:6px;
    background: rgb(19, 75, 173);
    border-radius: 4px;
    cursor: pointer;
    margin:40px 0;
}
#progress::-webkit-slider-thumb{
    -webkit-appearance: none;
    background:  rgb(19, 75, 173);
    width:30px;
    height:30px;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 5px 5px rgba(255,26,26,0.22);
}
.controls{
    display:flex;
    justify-content: center;
    align-items: center;
}
.controls div{
    width:60px;
    height:60px;
    margin:20px;
    background:#fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgb(19, 75, 173);
    box-shadow: 0 10px 20px rgba(255,26,26,0.22);
}
.controls div:nth-child(2){
    transform :scale(1.5);
    background: rgb(19, 75, 173);
    color:#fff;
}