body {
    font-family: "Boogaloo", sans-serif;
  background-image: 
    conic-gradient(
      from 45deg at 50% 50%,
      #ff2a85 0deg,
      #ff7300 60deg,
      #facc15 120deg,
      #4ade80 180deg,
      #3b82f6 240deg,
      #a855f7 300deg,
      #ff2a85 360deg
    ),
    radial-gradient(
      circle at 40% 40%, 
      rgba(255, 255, 255, 0.8) 0%, 
      rgba(0, 0, 0, 0.5) 60%, 
      #000000 100%
    );

  /* Blends the sharp color wheel into organic bleeds */
  background-blend-mode: color-dodge;
  
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;    
}
.scroll {
  max-height:33%;
  overflow: scroll;
}
.audio-player-container {
  /* max-width: 66%;
  max-height: 50%; */
  width:auto;
  font-family: "Boogaloo", sans-serif;
  border: 1px solid #ccc;
  padding: 15px;
  background: #f9f9f9;
  position:relative;
  overflow: auto;
  margin:auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;  

}
.pages {

  overflow:scroll;
  display: flex;
   position: relative;
  justify-content: center;
  text-align: center;
  align-items: center;  
  margin:auto;     
}
h1 {
  font-family: "Boogaloo", sans-serif;
  color: white;
  mix-blend-mode: difference;
  font-size:6em;
  font-style: bold;    

}
h3 {
    font-family: "Boogaloo", sans-serif;
    font-size:2em;
}
h4 {
    font-family: "Boogaloo", sans-serif;
    font-size:1.25em;
}
.header{
    top:1%;
  position: relative;
  margin:auto;  
}
h2 {
    font-family: "Boogaloo", sans-serif;
  color: #0c5460;
  font-size:2.5em;
  font-weight: bold;    
}
#audio-player {
  width: 100%;
  margin-bottom: 15px;
}

#audio-playlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

#audio-playlist li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size:1.75em;
  transition: background 0.2s ease;
}

#audio-playlist li:hover {
  background: #e9e9e9;
}

/* Style rule highlighting the track actively playing */
#audio-playlist li.active-track {
  background: #d1ecf1;
  color: #0c5460;
  font-weight: bold;
}
.boogaloo-regular {
  font-family: "Boogaloo", sans-serif;
  font-weight: 400;
  font-style: normal;
}