*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.main{
    width: 400px;
    height: 500px;
    padding: 30px;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.main title{
    text-transform: uppercase;
    text-shadow: 4px -4px 15px rgba(0,0,0,0.4);
}
.music-img{
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
}
.music-img img{
    width: 100%;
    height: 100%;
}
.music-box{
    width: 250px;
    display: flex;
    justify-content: space-evenly;
}
.progress-container{
    width: 100%;
}
.progress-container .progress-time{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.progress-container #progress-bar{
    width: 100%;
    height: 10px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
    border-radius: 5px;
    margin: 10px 0;
}
.progress-container #progress-bar #progress{
    width: 50%;
    height: 100%;
    background: #000;
    border-radius: 5px;
    pointer-events: none;
}