*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.container{
    width: 100%;
    padding: 50px 0;
    background: #333;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.music-player{
    background: #ffe0e5;
    background: linen;
    padding: 35px 25px;
    text-align: center;
    width: 400px;
}
nav{
    justify-content: space-between;
    display: flex; 
    margin-bottom: 30px;
}
nav .circle{
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: #fff;
    color: #f53192;
    box-shadow: 0 5px 5px rgba(255, 26, 26, 0.22);
}
.song-img{
    border-radius: 50%;
    width: 220px;
    height: 220px;
    border: 8px solid #fff;
    box-shadow: 0 10px 60px rgba(255, 26, 26, 0.22);
}
.music-player h1{
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-top: 20px;
}
.music-player p{
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}
#progress{
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #f53192;
    border-radius: 4px;
    cursor: pointer;
    margin: 40px 0;
}
#progress::-webkit-slider-thumb{
    -webkit-appearance: none;
    background: #f53192;
    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;
    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;
}
.controls div:nth-child(2){
    transform: scale(1.5);
    background: #f53192;
    color: #fff;
}
@media only screen and (max-width: 410px){
    .music-player{
        background: linen;
        padding: 35px 25px;
        text-align: center;
        width: 320px;
    }
    .controls div{
        width: 50px;
        height: 50px;
        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;
    }
    .controls div:nth-child(2){
        transform: scale(1.4);
        background: #f53192;
        color: #fff;
    }
    
}
@media only screen and (max-width: 330px){
    .music-player{
        background: linen;
        padding: 35px 25px;
        text-align: center;
        width: 260px;
    }
    .controls div{
        width: 45px;
        height: 45px;
        margin: 15px;
        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;
    }
    .controls div:nth-child(2){
        transform: scale(1.5);
        background: #f53192;
        color: #fff;
    }
    .song-img{
        border-radius: 50%;
        width: 200px;
        height: 200px;
        border: 8px solid #fff;
        box-shadow: 0 10px 60px rgba(255, 26, 26, 0.22);
    }
    
}
