*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.container{
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.music-player{
    background: #b6e2f7;
    width: 400px;
    padding: 25px 35px;
    text-align: 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: #f53192;
    box-shadow: 0 5px 10px rgba(225, 26, 26, 0.22);
}

.song-img{
   width: 220px; 
   border-radius: 50%;
   border: 8px solid #fff;
   box-shadow: 0 10px 60px rgba(225, 26, 26, 0.22);
}

.music-player h1{
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-top: 20px;
}
.music-player p{
    font-size: 14px;
    color: #333;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


audio {
    width: 300px;
    background-color: #b6e2f7;
    padding: 10px;
    border-radius: 5px;
  }
  
  audio::-webkit-media-controls-panel {
    background-color: #b6e2f7;
    border-radius: 5px;
  }
  
  audio::-webkit-media-controls-play-button {
    background-color:#b6e2f7;
    border-color: #1a1b1d;
  }
  
  audio::-webkit-media-controls-time-remaining-display,
  audio::-webkit-media-controls-current-time-display {
    color: #050505;
  }
  
  audio::-webkit-media-controls-timeline {
    background-color: #b6e2f7;
  }
  
  audio::-webkit-media-controls-timeline::-webkit-media-slider-thumb {
    background-color: #b6e2f7;
  }
  