@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');


*,
*::before,
*::after{
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
    font-family:"jost" ,sans-serif ;
}
.main_div{
    width: 100vw;
    height: 100vh;
    background-color: #ced4da;
    display: grid;
    place-items: center;
}

.music_container{
    width: 35rem;
    /* 1rem = 10px */
    height: 55rem;
    background-color:#bee1e6;
    border-radius: 2rem;
    box-shadow: 0 1.2rem 3rem 0.5rem #5c677d;
    padding: 3rem;
    text-align: center;
}
.music_container #title{
    text-transform:uppercase ;
    letter-spacing: 0.2rem;
    word-spacing: 0.5rem;
    color: #001233 ;
    margin: 2rem 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 500;
    text-shadow:  0 0.3rem 0.5rem #001233;
 }

 .music_container #artist{
    color:black;
    text-transform: capitalize;
    letter-spacing: 0.1rem;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
 }
.img-container{
    width: 25rem;
    height: 25rem;
    margin:auto;
}
img{
    width: 100%;
    height: 100%;
    border-radius:50%; 
    /* 50% */
    object-fit: cover;
    box-shadow: 0 1.2rem 3rem 0.5rem rgba(66, 24, 24, 0.4);
}
.music_controls{
    width: 20rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    margin-top: 1rem;
    /* 0.5 0r 5rem */

}
.music_controls .fas{
   color: black;
   font-size: 2rem;
   cursor: pointer;
   
   filter: drop-shadow(0 1.2rem 3rem 0.5rem rgba(66, 24, 24, 0.4));
}
.music_controls .main_button{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #111;
    color: #f6f6f6;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}
.music_controls .fas:hover{
    color: grey;
}
.music_controls .fa-play:hover{
    background-color: #f6f6f6;
    color: black;
    box-shadow: 0 1rem 2rem 0.2rem rgb(0,0,0,0.4);
}

.anime{
    animation: rotatePlayer 15s linear infinite;
}

@keyframes rotatePlayer {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
    
}

/*  progress style */
.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.07) , 0 2px 4px rgba(0,0,0,0.07) ,0 4px 8px rgba(0,0,0,0.07),0 8px 16px rgba(0,0,0,0.07), 0 16px 32px rgba(0,0,0,0.07),0 32px 64px rgba(0,0,0,0.07) ;
    border-radius: 4rem;
   
    position: relative;
    margin-top: 0.5rem;
    cursor: pointer;

}

.progress{
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #000;
    border-radius: 4rem;
    cursor: pointer;
}
.progress_duration_meter{
    display: flex;
    justify-content: space-between ;
    font-size:1.2rem ;

}