@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-1: #f5f4eb;
    --color-2: #11001c;
    --color-3: #190028;
    --color-4: #220135;
    --color-5: #32004f;
    --color-6: #ef476f;
}


* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
}

.wrapper {
    display: flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    width: 100%;
    height: 100svh;
    background-color: var(--color-2);
}

.wrapper #musicPlayer{
    width: 250px;
    height: 420px;
    background-color: var(--color-3);
    border-radius: 10px;
    box-shadow: 0 0 10px 2px rgb(100, 0, 128);
    padding:10px;
}

#musicPlayer .top-controlls{
    padding:10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin:0px 0px 10px 0px;
}

.top-controlls i{
    color: var(--color-1);
    cursor: pointer;
    width:30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.top-controlls i:hover{
    background-color: var(--color-5);
    box-shadow: 0 0 10px 2px rgb(100, 0, 128);
}

#musicPlayer .media-box{
    padding:10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:10px 0px;
}

.media-box .music-image{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 0 10px 2px rgb(107, 90, 111);
}

.media-box .media-info{
    width: 100%;
    padding:10px;
    color: var(--color-1);
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;  
}

.media-headings .title{
    font-size:14px;
}

.media-headings .singer{
    font-size:8px;
}

.media-actions i{
    font-size:10px;
    margin:0px 5px 0px 5px;
    cursor: pointer;
    padding: auto;
}
.media-actions i:hover{
   color: var(--color-6);
}

.media-controlls{
    padding:10px;
    text-align: center;
    width: 100%;
}
.media-controlls #custom-contoll{
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background-color:var(--color-6);
    border-radius: 10px;
}

#custom-contoll::-webkit-slider-thumb{
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background-color: var(--color-6);
    border:4px solid var(--color-1);
    border-radius: 50%;
}

.media-play-controlls{
    margin-top:15px;
    color: var(--color-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.media-play-controlls i {
    color: var(--color-3);
    cursor: pointer;
    width:35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--color-1);
    border-radius:50%;
    font-size:14px;
    margin:0px 5px;
}

.media-play-controlls i:hover {
    color: var(--color-6);
}

.media-play-controlls i:nth-child(2) {
    transform: scale(1.25);
}