@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:wght@500&family=Prompt:wght@500&family=Shadows+Into+Light&display=swap");

.slideshow-container {
  position: relative; /* Change to relative */
  width: 100%;
  height: 100vh; /* Use viewport height */
  z-index: 0; /* Lower z-index to keep it behind content */
  overflow: auto; /* Hide overflow to prevent scrollbars */
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: fixed;
  opacity: 1;
  transition: 5s ease-in-out; /* Changed transition property */
}

.content {
  position: relative;
  z-index: 1;
  padding: 20px;
}


body {
  background-image: '';
  /* background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
  margin: 0;
  padding: 0;
  overflow: auto;
  width: 100vw;
  font-family: "Prompt", sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width:480px) {
  .player {
    height: max-content;
  }
}

.player {
  background: radial-gradient(
      farthest-side at bottom left,
      rgba(255, 0, 255, 0.5),
      transparent
    ),
    radial-gradient(
      farthest-corner at bottom right,
      rgba(255, 50, 50, 0.5),
      transparent 400px
    );
  border-radius: 30px;
  border: 1px solid #fff;
  width: fit-content;
  height: fit-content;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.wrapper {
  border: 1px solid transparent;
  padding: 20px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

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

.track-art {
  margin: 10px;
  height: 250px;
  width: 250px;
  border: 2px solid #fff;
  border-radius: 200px;
  background-size: cover;
  background-position: center;
}

.now-playing {
  font-size: 1rem;
  -webkit-text-stroke: .6px black;
}

.track-name {
  font-size: 1.5rem;
  -webkit-text-stroke: .6px black;
}

.track-artist {
  margin-top: 3px;
  font-size: 1rem;
  -webkit-text-stroke: .6px black;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  /* margin-bottom: 0px; */
  padding: 5px;
  /* margin: 0px; */
}

.active {
  color: black;
}

.repeat-track,
.random-track,
.playpause-track,
.prev-track,
.next-track {
  padding: 5px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.repeat-track:hover,
.random-track:hover,
.playpause-track:hover,
.prev-track:hover,
.next-track:hover {
  opacity: 1;
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seek-slider,
.volume-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 3px;
  background: #83a9ff;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.seek-slider::-webkit-slider-thumb,
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background: white;
  border: 3px solid #3774ff;
  cursor: pointer;
  border-radius: 100%;
}

.seek-slider:hover,
.volume-slider:hover {
  opacity: 1;
}

.seek-slider {
  width: 60%;
}

.volume-slider {
  width: 30%;
}

.current-time,
.total-duration {
  padding: 10px;
  -webkit-text-stroke: .6px black;
}

i.fa-volume-down,
i.fa-volume-up {
  padding: 10px;
}

i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward {
  cursor: pointer;
}

.randomActive {
  color: black;
}

.rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

#page-container {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
  }

  #content-wrap {
    padding-bottom: 2.5rem;
  }
  
footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 0;
  width: 100%;
  height: 50px;
  /* background: linear-gradient(180deg, rgb(255, 255, 255, .3), rgb(131, 169, 255, .5));
  border: #fff 1px solid; */
}
/* 
footer:hover {
    transition: 1s ease-in-out;
    background: linear-gradient(180deg, rgb(203, 203, 203), #83a9ff) ease-in-out;
  } */

p {
  margin: auto;
  text-align: center;
  color: black;
  text-shadow: 0px 0px 5px white;
  opacity: 1;
}

a {
  text-decoration: none;
  color: black;
  text-shadow: 0px 0px 5px white;
  transition: 0.5s linear;
}

a:hover {
  transition: 0.5s linear;
  text-shadow: 0px 0px 5px black;
  color: white;
}