/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  
}


img {
  width: 350px;
  height: 350px;
  }
  
.marquee {
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;  
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}


.music-player {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  margin: 20px auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.music-player h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.playlist {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.song {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.song h3 {
  margin: 0 0 10px 0;
  font-size: 1.1em;
  color: #444;
}

audio {
  width: 100%;
}

/* Custom audio player styling */
audio::-webkit-media-controls-panel {
  background-color: #f8f8f8;
}

audio::-webkit-media-controls-play-button {
  background-color: #2196F3;
  border-radius: 50%;
}

audio::-webkit-media-controls-play-button:hover {
  background-color: #1976D2;
}