@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;500&family=Mooli&display=swap');
*,*::before,*::after{
    margin: 0;
    padding: 0%;
    box-sizing:border-box;
}
html{
    font-size: 10px;
    height: 100vh;
    font-family: 'Mooli', sans-serif;
    background:url(img13.jpg);
    background-size: cover;
    background-blend-mode: overlay;
    background-color:rgba(0 , 0,0,0.5) ;
}
a{
    color: white;
    transition: .8s;
}
a:hover{
    color: rgb(14,14,18);
    transform: rotate3d(1, 1,1 ,360deg);
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}
.name{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: white;
}
.main_div{
    display: flex;
    justify-content: center;
    height: 88vh;
}
.music_container{
    width: 35rem;
    height: 55rem;
    background-color: azure;
    border-radius: 2rem;
    box-shadow: 0 1rem 4rem 0.5rem rgba(211, 222, 231, 0.5);
    padding: 2.5rem;
    text-align: center;
    background-blend-mode: overlay;
    background-color:rgba(207, 207, 198, 0.123) ;
    color: white;

}
.music_container #title{
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    word-spacing: 0.5rem;
    margin: 2rem 0 0.5rem 0;
    font-size: 1.6rem;
    font-weight: 500;
    text-shadow: 0 0.4rem 0.6rem rgba(0,0,0,0.3);
}
.music_container #singer{
    text-transform: capitalize;
    letter-spacing: 0.3rem;
    word-spacing: 0.5rem;
    margin: 0.5rem 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0 0.4rem 0.6rem rgba(0,0,0,0.3);   
}
.img_container{
    width: 25rem;
    height: 25rem;
    margin: auto;
}
img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1rem 4rem 0.5rem rgba(211, 222, 231, 0.5);
}
.music_controls .fas{
    color: white;
    font-size: 2rem;
    cursor:pointer;
    filter: drop-shadow(0.5rem 0.3rem 0.5rem rgba(211, 222, 231, 0.5));;
}
.music_controls{
    display: flex;
    width: 20rem;
    justify-content: space-between;
    margin:auto;
    margin-top:5rem;
    align-items: center;
}
.music_controls .main_button{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgb(33,39,46);
    color:whitesmoke;
    font-size:1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.music_controls .fa-play:hover{
    background-color: aliceblue;
    color:aqua;
    box-shadow: 0 1.2rem 3rem 0.6rem rgba(134, 15, 15, 0.3);
}
.music_controls .fas:hover{
    color:coral;
}
.footer{
    font-size: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    background-blend-mode: overlay;
    background-color:rgba(207, 207, 198, 0.123);
    padding: 0.3rem;
    margin-top: 0.5rem;
    position: absolute;
    bottom: 0px;
}

/*---------------------------------------------------------------------------------*/
.progressbar_container{
    width: 100%;
    height: auto;
    padding: 1rem 0;
    margin-top:1rem;
}
.progress_div{
    width: 100%;
    height: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.7),0 2px 4px rgba(0,0,0,0.7),
    0 4px 8px rgba(0,0,0,0.7),0 8px 16px rgba(0,0,0,0.7),0 16px 32px rgba(0,0,0,0.7), 0 32px 64px rgba(0,0,0,0.7);
    border-radius: 4rem;
    position: relative;
    margin-top: 0.5rem;
    cursor: pointer;
    appearance: none;
}
.progress{
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    border-radius: 4rem;
    margin-top: 0.5rem;
    cursor: pointer;
    appearance: none;
    margin-top: -0.0rem;
}
.progress_duration_meter{
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
}
