*{
    margin: 0;
    padding: 0;
    font-family: 'poppins' , sans-serif;
    box-sizing: border-box;
}

.container{
    width: 100%;
    height: 120vh;
    background: #0d0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;


}

.Music-player{
    background: #674a33;
    width: 400px;
    padding: 15px 25px;
    text-align: center;
    height: 115vh;


}

nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;

}

nav .circle{

    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #000000;
    color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.22);
}

.song-img{

    height: 40vh;
    width: 300px;
    border-radius: 90%;
    border: 8px solid black;
    box-shadow:  0 10px 60px  rgba(0, 0, 0, 0.22);
    margin-bottom: 2px;
}

.Music-player h1{
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin-top: 5px;
}

.Music-player p {

    font-size: 14px;
    color: white;
}

#progress{

    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: gray;
    border-radius: 4px;
    cursor: pointer;
    margin: 30px 0;
}

#progress::-webkit-slider-thumb{

    -webkit-appearance: none;
    background:black ;
    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;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    border-radius: 50%;
    color: #674a33;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
    cursor: pointer;

}

.controls div:nth-child(2){

    transform: scale(1.5);
    background: #674a33;
    color: white;
}