.music_container{ 
    
    
    width: 100%;
    height: 100%;
    padding: 3rem;
    text-align: center;
    border-radius: 2rem;


} 
.music_container #songtitle{
    text-transform: capitalize;
    letter-spacing: 0.2rem;
    word-spacing: 0.5rem;
    color: #171717;
    font-weight: 500;
    text-transform: capitalize;
}
.artistname{
    text-transform: capitalize;
}
.music_container #songartist{
    
    padding-top: 10px;
    color: #807e7e;
    text-transform: capitalize;
}
.img_container{
    
    width: 15rem;
    height: 15rem;    
    padding-top: 10px;
    margin: auto;
    position: relative;
}
.slider_container{
    position: absolute;
    width: 100%;    
    padding-top: 40px;

    
}
.slider_container .fa{
    color: tomato;
    font-weight: bold;
    cursor: pointer;

}
#volume_slider{
        cursor: pointer;
        
}
.img2{	
    margin-top: 1rem;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow:0 1rem 2.4rem 0.1rem rgba(0,0,0,0.4); 
    }

.music_controls{
    align-items: center;
    width: 20rem;
    display: flex;
    justify-content: space-between;
    margin: auto;	
    margin-top: 0rem;	
    padding-top: 10px;
    text-align: center;



}
.fas{
    cursor: pointer;
}
.main_btn{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    color: #f6f6f6;
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub_btn{
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: #f6f6f6;
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
}
.music_controls .fas:hover{
    color: grey;
}
.music_controls .fa-play:hover
    {
        background-color: grey;
        color: black;
    }
.progressbar_container{
    width: 100%;
    height: auto;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.progress_duration_meter{
    display: flex;
    justify-content: space-between;    
    padding-top: 60px;

}
.progress_div{
    height: 0.5rem;
    width: 100%;
    border-radius: 4rem;
    position: relative;
    margin-top: 0.2rem;
    appearance: none;
    cursor: pointer;
    box-shadow:0 1rem 1.4rem 0.1rem rgba(0,0,0,0.4);
    background-color: grey;
}
.progress{
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: blue;
    border-radius: 3rem;

}
.table_image{
    width: 2rem;
    height: 2rem;
    position: relative;
}

   /*animation*/
   .anime{
    animation: rotateplayer 7s linear infinite;
    }
    @keyframes rotateplayer {
        from{
            transform: rotate(0deg);
        }
        to{
            transform: rotate(360deg);
        }
    }

    @media screen and (max-width: 500px) {
 
        .music_container #title{
            font-size: 20px;
        }
        .music_controls{
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin: auto;
            margin-top: 0rem;
            padding-top: 10px;
            text-align: center;
        }
        .progressbar_container{
            padding: 3rem 0;
        }
        .login-box{
            margin-left: 0;
        }
    }