*{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, sans-serif;
    box-sizing: border-box;
    
}
.container{
    width: 100%;
    width: 100%;
    background-image: url(images/conurebangla.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.music-player{
    width: 400px;
    border-radius: 10px;
    padding: 25px 35px;
    text-align: center;
    background: radial-gradient(circle at 74.2% 50.9%, rgb(14,72,222) 5.2%,rgb(3,22,65) 75.3%);
}
nav{
    display: flex;
    color: #fff;
    justify-content: space-between;
    margin-bottom: 30px;
}
nav .nav-text {
    padding: 10px;    
}
nav .circle{
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    line-height: 40px;
    color: blue;
}
.music-image{
    width: 200px;
    border: 8px solid white;
    border-radius: 50%;
    box-shadow: 0 10px 60px rgba(255, 26,25, 0.22);
}
.music-player h1{
    font-size: 15px;
    color: white;
    font-weight: normal;
    margin-top: 10px;
}
.music-player p{
    font-size: 14px;
    color: white;
    margin-top: 10px;
}
#progress{
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 4px;
    cursor: pointer;
    margin: 40px 0;
}
#progress ::-webkit-slider-thumb{
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    border: 8px solid white;
    background: skyblue;
    border-radius: 50%;
    box-shadow: 0 5px 5px rgba(248, 247, 247, 0.952);

}
.controls{
    display: flex;
    justify-content: center;
    align-items: center;
}
.controls div{
    width: 60px;
    height: 60px;
    margin: 20px;
    color: red;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.controls div:nth-child(2){
    transform: scale(1.5);
}
