body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    text-align: center;
    background-image: url('bg.jpg');
   /* background-size: 100% auto; */
}

.snowflake {
  position: fixed;
  top: -10px;
  color: white;
  user-select: none;
  pointer-events: none;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}


header {
    font-family: Georgia, cursive; /*'Brush Script MT', cursive;*/
    background-color: #FFFFFF;
    border-radius: 25px;
    padding: 5px;
    color: RED;
    opacity: 80%;
}

h1 {
    font-size: 2.5em;
 }

h2 {
    color: darkblue;
    text-shadow: 2px 2px white;
}

a:link {
  color: darkblue;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: darkblue;
  text-shadow: 2px 2px black;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: darkblue;
  text-shadow: 2px 2px white;
  background-color: transparent;
  text-decoration: underline;
}

#song-list {
    list-style-type: none;
    width: 450px;
    border-radius: 25px;
    border: 1px solid #ccc;
/*    background-color: rgba(0, 0, 100, 0.1);*/
    background-color: rgba(28, 28, 128, 0.1);
    margin: 20px auto;
    height: 105px; /* Feste Höhe für den Textbereich */
    overflow-y: scroll; /* Vertikale Scrollbar aktivieren */
    //white-space: pre-wrap; /* Zeilenumbruch im Text */
}

#song-list::-webkit-scrollbar {
    width: 8px;
}

button {
    /*background-color: #170080;*/
    background-color: rgba(23, 0, 128, 0.7);
    border-radius: 25px;
    color: white;
    padding: 10px;
    margin: 1px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: rgba(73, 0, 128, 0.7);
}

footer {
    margin-top: 50px;
    font-size: 0.8em;
}


/* Bereich für die Anzeige des Liedtextes */
#song-lyrics {
    width: 450px;
    height: 300px; /* Feste Höhe für den Textbereich */
    margin: 20px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 25px;  
/*    background-color: rgba(0, 0, 100, 0.1);*/
    background-color: rgba(28, 28, 128, 0.1);
/*    background-color: #fff;
    opacity: 90%;*/
    text-align: center;
    font-size: 1.em;
    font-family: TimesNewRoman,Times New Roman,Times,Baskerville,Georgia,serif;
    overflow-y: scroll; /* Vertikale Scrollbar aktivieren */
    white-space: pre-wrap; /* Zeilenumbruch im Text */
}

/* Optional: Scrollbar anpassen */
#song-lyrics::-webkit-scrollbar {
    width: 8px;
}

#song-lyrics::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

#song-lyrics::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
