@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html{
    box-sizing: border-box;
}
body{
    margin:0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.background{
    position:fixed;
    width:200%;
    height:200%;
    top: -50%;
    left:-50%;
    z-index:-1;
}

.background img{
    position:absolute;
    margin:auto;
    top:0;
    left:0;
    bottom:0;
    right:0;
    min-width:50%;
    min-height:50%;
    filter:blur(15px);
    -webkit-fliter:blur(50px);
    transform:scale(1.1);
}

.music_player{
         padding:20px;
         border-radius: 20px;
         background:#e7e7e7;
         box-shadow: 10px 30px 40px rgba(0,0,0,0.2);
         border:1px solid #e7e7e7;
}
.album_art{
         width:200px;
         height:200px;
         border-radius: 10px;
         box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
         margin-bottom:20px;
         overflow: hidden;
}
.album_art img{
        width:100%;
        height:100%;
        object-fit: cover; 
        border-radius: 10px;
        display:block;
}

.control{
         text-align: center;
         margin:30px 0px;
         justify-content: center;
         align-items: center;
         display: flex;
}

.play_btn{
         width:50px;
         height: 50px;
         background-color:#fff;
         background:url(play.png)center no-repeat;
         background-size: 50%;
         border:1px solid #ddd;
         border-radius: 50%;
         box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
         cursor: pointer;
}
.prev_btn{
         width:50px;
         height: 50px;
         background-color:#fff;
         background:url(previous.png)center no-repeat;
         background-size: 50%;
         border:1px solid #ddd;
         border-radius: 50%;
         box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
         margin:0px 0px;
         cursor: pointer;
}
      
.next_btn{
         width:50px;
         height: 50px;
         background-color:#fff;
         background:url(next.png)center no-repeat;
         background-size: 50%;
         border:1px solid #ddd;
         border-radius: 50%;
         box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
         margin:0px 0px;
         cursor: pointer;
}
h2{
         font-size: 20px;
         margin: 5px 0px;
         text-align: center;
}
h3{
         font-size: 15px;
         margin: 5px 0px;
         text-align: center;
}
.player-progress{
         width:100%;
         height: 4px;
         border-radius: 10px;
         background:#fff;
         position: relative;
         overflow: hidden;
}
.progress{
         background: #aaa9a9;;
         width:0%;
         height: 100%;
         position:absolute;
         top:0px;
         left:0px;
}
.music-duration{
    position: relative;
    display: flex;
    text-align:right;
    font-size: 12px;
    justify-content: space-between;
    margin-top:0;
    color:#111;
}
.player-controls{
    position: relative;
    top: -15px;
    left: 120px;
    width: 200px;
}