*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    background: url(images/danny-lines-iL_HLF_wZxc-unsplash.jpg);
   background-position: top;
  background-size: contain;
    width: 100%;
    height: 100vh;
    /*background: #333;*/
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    
}
.container header{
    text-align: center;
    color:  white;
}
.music-player{
    
    box-shadow: 4px 5px 4px 5px rgba(147, 146, 147, 0.22);
    background: thistle;
    width: min(25rem, 100%);
    padding:  25px 35px;
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
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: #f53192;
    box-shadow: 0.5px 10px rgba(255, 26, 26, 0.22);
}
.song-img{
    width: 220px;
    border-radius: 50%;
    color: #eab9d1;
    box-shadow: 0 10px 60px rgba(255, 26, 26, 0.22);
}
.music-player h1{
    font-size: 20PX;
    font-weight: 400;
    color: #f53192;
    margin-top: 20px;
    margin-bottom: 20px;
}
.music-player p{
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}
#progress{
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #f53192;
  border-radius: 4px;
  cursor: pointer;
}
#progress::-webkit-slider-thumb{
    -webkit-appearance: none;
    background: #f53192;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow:  0, 5px 5px rgba(255, 26, 26, 0.22);
}
.controls{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    background-color: red;
}
.controls div{
    width: 40px;
    height: 40px;
    margin: 20px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f53192;
    cursor: pointer;
}
.controls div:nth-child(2){
    transform: scale(1.5);
    background: #f53192;
    color: #fff;
}
video{
    height: 300px;
}
@media(max-width:760px){
      .music-player{
        width: max(20rem, 90%);
      }
}