@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200&display=swap');


html
{
    font-size: 62.5%;
    /* font-family: "Jost",sans-serif; */
}
body
{
    background-color: #f6f6f6;
    display:grid;
    place-items: center;
}

.music_container  
{
    width:28rem;
    height:50rem;
    background-color: #ffffff;
    box-shadow: 0 1.2rem 3rem 0.5rem rgba(0, 0, 0, 0.2);
    padding:1.5rem;
    margin-top: 2rem;
    border-radius: 20px;
    text-align: center;
}
.music_container #title
{
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    word-spacing: 0.5rem;
    color:#171717;
    margin:1.5rem 0 0.2rem 0;
    font-size: 2.5rem;
    font-weight: 500;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.3);
}

.music_container #artist
{
    color: #7a7a7a;
    text-transform: capitalize;
    letter-spacing: 0.1rem;
    font-size: 1.7rem;
    margin-top: 1.8rem;
    font-weight: 300;
    
}

img
{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit: cover;
    box-shadow: 0 1.2rem 3rem 0.5rem rgba(0, 0, 0, 0.4);
    width:20rem;
    height:20rem;
    margin-top: 2rem;
}

.music_controls
{
    width:20rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    margin-top: 1rem;
}
.music_controls .fas
{
    color:#111111;
    font-size:1.5rem;
    cursor:pointer;
    filter:drop-shadow(0 1.2rem 3rem 0.5rem rgba(0, 0, 0, 0.4));
}
.music_controls .main_button
{
    width:4rem;
    height:4rem;
    border-radius:50%;
    background-color: #111111;
    color:#f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}
.music_controls .fas:hover{
    color:grey;
}
.music_controls .fa-play:hover,.music_controls .fa-pause:hover, .volume_controls .vol_icon:hover{
    background-color: #f6f6f6;
    color:#111111;
    box-shadow: 0 1rem 2rem 0.2rem rgba(0, 0, 0, 0.4);
}

.anime
{
    animation: rotatePlayer 4s linear infinite;
}
@keyframes rotatePlayer {
    0%
	{
		transform: scale(1);
	}
	20%
	{
		transform: scale(0.75);
	}
	40%
	{
		transform: scale(1);
	}
	60%
	{
		transform: scale(0.75);
	}
	80%
	{
		transform: scale(1);
	}
	100%
	{
		transform: scale(0.75);
	}
}

/* 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;
    transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    -webkit-transition: all 1s linear;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.progress
{
    position: absolute;
    top:0;
    left:0;
    width: 0%;
    height:100%;
    background-color: #111111;
    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;
    transition: width 0.5s linear;
    -moz-transition: width 0.5s linear;
    -o-transition: width 0.5s linear;
    -webkit-transition: width 0.5s linear;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.progress_duration_meter
{
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
}

.volume_controls
{
    margin-top:2rem;
    width:20rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    margin-top: 2.5rem;
}
#slider
{
    margin-left: 1.5rem;
}
.vol_icon
{
    width:3rem;
    height:3rem;
    border-radius:50%;
    background-color: #111111;
    color:#f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
#footer
{
    margin-top:4.3rem;
    font-weight: bold;
    font-family: 'Akaya Kanadaka';font-size: 24px;
}
#current_time, #duration
{
    font-family: 'Assistant';font-size: 16px;
}
#header
{
    margin-top:0.4rem;
    font-weight: bold;
    font-family: 'Audiowide';font-size: 27px;
    color:red;
    text-transform: uppercase;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.3);
}
#practice
{
    color: #7a7a7a;
    text-transform: capitalize;
    letter-spacing: 0.1rem;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}
