*{
    margin: 0%;
    padding: 0%;
    font-family: monospace;
    box-sizing: border-box;
   
   
}
:root{
    --accent: #70366a;
}
.container{
    width: 100%;
    height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.music-player{
   
    left: 50vw;
    width: 70vw;
    height: 100vh;
    align-items: center;
    background: transparent;
    padding: 25px 35px;
    text-align: center;
     flex-direction: column;   /* stack everything vertically */
    align-items: center;      
   transform: scale(0.8);
   transform-origin: center;
}
nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
nav .circle{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #492651;
    box-shadow:#352f2f;

}
.song-img{
    width: 80%;
    border-radius: 5%;
    box-shadow: 0 10px 60px rgba(37, 30, 30, 0.22);
}
.music-player h1{
    font-weight: 400;
    color: #ffffff;
    margin-top: 20px;
}
.music-player p{
    font-weight: 400;
    color: #ffffff;
   
}
.music-player audio{
    margin-top: 30px;
    
}
#progress{
   
     -webkit-appearance: none;
    appearance: none;

    width: 100%;
    height: 6px;

     background: #ffffff33;
    border: 3px solid #fff;
    border-radius: 999px;

    cursor: pointer;
    margin: -40px 0;
}
#progress::-webkit-slider-runnable-track{
    height: 6px;
    background: transparent;
    border-radius: 999px;
}
#progress::-webkit-slider-thumb{
    -webkit-appearance: initial;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 8px solid #ffffff;
}

#albumcover{
    border-radius: 7px;
   margin: 0 auto;
    
    
}
.controls{
    display: flex;
    justify-content: center;
    align-items: center;
}
.controls div{
    width: 60px;
    height: 60px;
    margin: 10px;
    background: rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    
}

.controls div:nth-child(2){
    transform: scale(1.5);
    background-color: #fff;
   
    color: #000;
}
#timelen{
      font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
}