*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.contain{
    width: 100%;
    height: 100vh;
    background-image: url(images/IMG_0086.JPG);
    background-size: cover;
    background-position: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.music-player{
    background: transparent;
    width: 400px;
    padding: 25px 35px;
    text-align: center;
}
nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
nav .circle{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #f53192;
    box-shadow: 0 5px 10px rgba(255, 26, 26, 0.22);
}
.song-img{
    width: 240px;
    border-radius: 60%;
    border: 8px solid #da1546;
    box-shadow: 0 1px 60px rgba(255, 26, 26, 0.22);
}
.music-player h1{
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-top: 20px;
}
.music-player p{
    font-size: 17px;
    font-weight: 800;
    color: #333;
}
#progress{
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #f53192;
    border-radius: 4px;
    cursor: pointer;
    margin: 40 px 0;
}
#progress::-webkit-slider-thumb{
    background: #f53192;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 7px solid #fff;
    box-shadow: 0 5px 5px rgba(255, 26, 26, 0.22);
    -webkit-appearance: none;
}
.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: #f53192;
    box-shadow: 0 10px 20px rgba(255, 26, 26, 0.22);
    cursor: pointer;
    transition: transform 0.5s;
}
.controls div:nth-child(2){
    transform: scale(1.5);
    background: #d66d0b;
    color: purple;
}
.controls div:hover{
    background: #07bebe;
    transform: translateY(-5px);
}
