*{
    margin: 0;
    padding: 0;
}
.container{
    width: 100%;
    height: 100vh;
    background-color: rgb(20, 11, 44);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}
.music{
    width: 300px;
    height: 500px;
    background: #ffe0e5;
    padding: 20px 30px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0px  1px 20px rgb(222, 166, 212);
}
nav{
    display: flex;
    align-items: center;
    justify-content:space-between;
    /* margin-bottom:30px; */
}
nav .change{
    /* background-color: aqua; */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color:rgb(173, 4, 4);
    box-shadow: 0px 3px 8px black;
    margin-bottom: 20px;
    cursor: pointer;
}
.song{
    width: 200px;
    height: 200px;
    border: 8px solid rgb(234, 210, 231);
    border-radius: 100%;
    box-shadow: 0px 6px 10px black;
    margin-bottom: 20px;
}
.music h2{
    margin: 5px 5px;
}
audio{
    margin: 10px;
    padding: 10px;
}

#progress{
    -webkit-appearance: none;
    width: 100%;
    cursor: pointer;
    height: 5px;
    background-color: rgb(204, 9, 129);
    margin:7px;
    margin-top: 20px;
}
#progress::-webkit-slider-thumb{
    -webkit-appearance: none;
    background-color: #f53192;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0px 5px 5px rgba(255,26,26,0.22);
}
.control{
    display: flex;
    align-items:center;
    justify-content:space-evenly;
    margin: 30px 20px;
}
.control div{
    width: 40px;
    height: 35px;
    background:white;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color:rgb(204, 9, 129);
    box-shadow: 0px 3px 8px black;
    cursor: pointer;
}
.control div:nth-child(2){
transform: scale(1.5);
color: white;
background-color: #f53192;
}
body:focus{
    outline: none;
}

