body {
   
  background-color: lightgreen;

  /* Smoothly transition the background color */
  transition: background-color .5s;
}

.nm{
 padding-top: 10%;
 padding-bottom: 5%;
        }
        
.lm{
 padding-top: 10%;
 padding-bottom: 5%;
        }
        
.album {
  font-size: 23px;
  color: black;
  font-weight: bold;
}
.player {
  height: 95vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 25px;
}

.track-art {
  margin: 5px;
  height: 235px;
  width: 235px;
  background-image: url("");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5%;
  box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.5);
              transition: transform 0.3s;
            transition: ease 0.3s;
}
.track-art:hover {

              box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s;
            transition: ease 0.3s;
}


.track-artums2 {
  border-radius: 50%;
}

.now-playing {
  font-size: 2rem;
  margin-top: -9%;


}

.track-name {
  font-size: 1.6rem;
  text-shadow: 1px 1px 1px black;
}

.track-artist {
  font-size: 1.5rem;
  text-shadow: 1px 1px 1px black;

}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.playpause-track, .prev-track, .next-track {
  padding: 25px;
  opacity: 0.8;
  transition: all 0.3s ease;

  /* Smoothly transition the opacity */
  transition: opacity .2s;
}

.playpause-track:hover, .prev-track:hover, .next-track:hover {
  opacity: 1.0;
  color:#730000;
  transition: all 0.3s ease;
}

.slider_container {
  width: 75%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:767px){
.volume_slider {
  display: none;
 }
.fa-volume-down {
  display: none;
  }
  
  .fa-volume-up {
   display: none;
  }
  
}


/* Modify the appearance of the slider */
.seek_slider, .volume_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: black;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

/* Modify the appearance of the slider thumb */
.seek_slider::-webkit-slider-thumb, .volume_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
}

.seek_slider:hover, .volume_slider:hover {
  opacity: 1.0;
}

.seek_slider {
  width: 60%;
}

.volume_slider {
  width: 30%;
}

.current-time, .total-duration {
  padding: 10px;
 
}

i.fa-volume-down, i.fa-volume-up {
  background-image: url("");  /*ссылка на иконку значки динамика вкл и выкл*/
  padding: 10px;

}

i.fa-play-circle, i.fa-pause-circle, i.fa-step-forward, i.fa-step-backward {
  cursor: pointer;
  background-image: url("");  /*ссылка на иконку плей пауз если свои добавлять*/
  background-size: 12%;
}