body {
  background-color: lightgreen;
  transition: background-color 0.5s;
}

.player {
  height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.track-art {
  margin: 25px;
  height: 250px;
  width: 250px;
  background-image: url("https://images.pexels.com/photos/262034/pexels-photo-262034.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260");
  background-size: cover;
  border-radius: 15%;
}

.now-playing {
  font-size: 1rem;
}

.track-name {
  font-size: 3rem;
}

.track-artist {
  font-size: 1.5rem;
}

.buttons {
  padding: 10px;
  display: flex;
  align-items: center;
  column-gap: 5em;
}

.playpause-track,
.prev-track,
.next-track {
  padding: 5px;
  background: none;
  transition: scale 0.2s;
  cursor: pointer;
}

.playpause-track:hover,
.prev-track:hover,
.next-track:hover {
  scale: 1.1;
}

.slider_container {
  width: 75%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seek_slider,
.volume_slider {
  appearance: none;
  height: 5px;
  background: black;
  opacity: 0.7;
  transition: opacity 0.2s;
  cursor: pointer;
}

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

.seek_slider {
  width: 60%;
}

.volume_slider {
  width: 30%;
}

.seek_slider::-webkit-slider-thumb,
.volume_slider::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
}

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