body {
  background-image: url('/img/wall.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  user-select: none;
  margin: 0;
  padding: 0;
  color: #f8e0b1;
  background-color: rgb(0,0,0);
  transition: background-color 0.5s, color 0.5s;
  font-family: 'Montserrat', sans-serif;
}

.cream-neon-text {
  font-family: "Tilt Neon", sans-serif;
  font-weight: 200;
  /* Setting letter-spacing disables kerning */
  letter-spacing: 0.075em;
  /* Just to make sure */
  font-kerning: none;
  color: #f8e0b1;
  text-shadow:
      0 0 10px #f8e0b191,   /* Middle glow */
      0 0 20px #f8e0b1,   /* More glow */
      0 0 40px #f8e0b1,   /* More glow */
      0 0 80px #f8e0b1,   /* More glow */
      0 0 160px #f8e0b1;  /* More glow */
}

p,
h1,
h2,
h3 {
  padding-left: 5%;
  padding-right: 5%;
  cursor: default;
}

a,
a:link,
a:visited {
  color: #f8e0b1;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

a:hover,
a:active {
  font-weight: 300;
}

.linkStyle {
  cursor: pointer;
}

#playButton,
#stopButton {
  object-fit: contain;
  cursor: pointer;
  width: auto;
  height: 15vh;
  max-height: 300px;
  min-height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 1000;
}

#stopButton {
  transition: opacity 0.5s ease;
  opacity: 1;
}

/* Show only the play button initially */
#playButton {
  display: block;
}

/* Hide the default audio player */
#audioPlayer {
  display: none;
}

/* Define our work area */
.glow-wrapper {
  background-color: rgba(0, 0, 0, .5);
  transition: background-color 0.3s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100svh;
  width: 100%;
}

/* Styles for the show information container */
#show-info {
  flex: 0 1 auto;
  text-align: center;
  white-space: unset;
  text-wrap: balance;
  font-family: "Tilt Neon", sans-serif;
  /* Scales with viewport height but starts at 2.0rem */
  font-size: calc(2.0rem + 2.0vh);
  /* font-size: 7.5vw; */
}

/* Styles for the album information container */
#album-info {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: unset;
  text-wrap: balance;
  /* Scales with viewport height but starts at .75rem */
  font-size: calc(.75rem + 2.0vh);
  font-weight: 200;
}

#album-info img {
  display: block;
  object-fit: contain;
  width: 0px;
  height: 0px;
}

/* Styles for the song information container */
#song-info {
  flex: 0 1 auto;
  text-align: center;
  white-space: unset;
  text-wrap: balance;
  /* Center text vertically */
  justify-content: center;
  /* Scales with viewport height but starts at .7rem */
  font-size: calc(.7rem + 2.0vh);
  font-weight: 300;
}
