@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
body {
    background-image: url("images/MusicPlayerBG.jpg");
    background-position: cover;
    color: #fff;
    font-family: "Outfit";
}
.container {
    margin-left: 27em;
    margin-top: 10px;
    text-align: center;
    border-radius: 3%;
    width: 300px;
    padding: 2em;
    background: transparent;
    backdrop-filter: blur(30px);
}
nav{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
nav button{
    font-size: 30px;
    color: white;
    margin-top: 1em;
    background: transparent;
    backdrop-filter: blur(50px);
    border: none;
    outline: none;
}
.mainImg img {
    border-radius: 50%;
    font-size: 150px;
}
button, #progress {
    cursor: pointer;
}
#progress {
    -webkit-appearance: none;
    width: 60%;
    height: 6px;
    background: #db229d;
    border-radius: 4px;
    margin: 40px 0;
}
#progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 5px rgba(255,26,26,0.2);
}
.vol i {
    margin-right: 10px;
    position: relative;
    top: 4px;
}
#volume {
    -webkit-appearance: none;
    text-align: center;
    width: 30%;
    height: 15px;
    background: transparent;
    border-radius: 4px;
    border: none;
    outline: none;
    margin: 10px 0;
    color: #fff;
}
#volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    border-radius: 50px;
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
}
.controls{
    display: flex;
    justify-content: space-evenly;
}
.controls button {
    height: 50px;
    width: 50px;
    font-size: 30px;
    color: #cd419e;
    margin-top: 10px;
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}
.controls button:nth-of-type(2){
    transform:scale(1.5);
    background-color: #cd419e;
    color: white;
}
aside{
    float: right;
    margin-top: -20px;
    margin-right: 60px;
}
ol {
    list-style-type: none;
}
.playlist {
    display: flex;
    font-size: 20px;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 0.5em;
    border-radius: 3%;
}
li {
    display: flex;
    justify-content: space-evenly;
    cursor: pointer;
}
.song-title{
    font-size: 25px;
}
span {
    text-align: right;
    font-size: 15px;
    margin-top: 10px;
    color: rgb(142, 139, 139);
}
option {
    color: black;
}


@media screen and (min-width: 300px) {
    .container {
        margin-left: 0em;
        width: 150px;
    }
    .mainImg img {
        height: 100px;
    }
    .playlist{
        width: 100px;
    }
    li {
        flex-direction: column;
    }
}
@media screen and (min-width: 500px) {
    .container {
        margin-left: 1em;
        width: 250px;
    }
    .playlist{
        width: 100px;
    }
    li {
        flex-direction: column;
    }
    .mainImg img {
        height: 150px;
    }
}
@media screen and (min-width: 550px) {
    .container {
        margin-left: 2em;
        width: 300px;
    }
    .playlist{
        width: 100px;
    }
    li {
        flex-direction: column;
    }
    .mainImg img {
        height: 200px;
    }
}
@media screen and (min-width: 700px) {
    .container {
        margin-left: 12em;
        
    }
    .playlist{
        width: 100px;
    }
    li {
        flex-direction: column;
    }
    .mainImg img {
        height: 250px;
    }
}
@media screen and (min-width: 800px) {
    .container {
        margin-left: 15em;
    }
    .playlist{
        width: 130px;
    }
    li {
        flex-direction: column;
    }
    .mainImg img {
        height: 300px;
    }
}
@media screen and (min-width: 900px) {
    .container {
        margin-left: 20em;
    }
    .playlist{
        width: 150px;
    }
    li {
        flex-direction: column;
    }
}
@media screen and (min-width: 1000px) {
    .container {
        margin-left: 27em;
    }
    .playlist{
        width: 250px;
    }
    li {
        flex-direction: column;
    }
}