body {
  background-image: url('background.jpg');
  /* Replace with your image */
  background-repeat: repeat;
  font-family: Arial, sans-serif;
}

#changeSong {
  /* Make it big */
  height: 100px;
  width: 160px;
  font-size: 24px;
}

.content {
  width: 80%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  /* Semi-transparent background */
  padding: 20px;
  text-align: center;
}

.header-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flashing-text {
  color: #bcc22c;
  animation: flash 1s linear infinite;
  margin: 0 20px;
  /* Adds spacing around the text */
}

.side-gif {
  max-height: 100px;
  /* Adjust size as needed */
}

@keyframes flash {
  50% {
    opacity: 0;
  }
}

marquee {
  color: blue;
  font-size: 24px;
  margin: 10px 0;
}

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