*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inconsolata', monospace;
    text-decoration: none;
    list-style: none;
    user-select: none;
}
body, html {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(-45deg, #4b1c3f, #ff6f3c, #ffb347, #6b1f5e);
  background-size: 400% 400%;
  animation: gradientAnimation 30s ease infinite;
  position: relative;
}

.choose-artist-header {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    margin-top: 20px;
  }

  .artist-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Spalten, alle gleich breit */
    gap: 20px;
    padding: 20px;
  }
  .artist {
    text-align: center;
  }
  
  
  .artist img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white; /* weißer Rand mit 4px Breite */
    box-shadow: 0 0 5px rgba(0,0,0,0.1); /* optional leichter Schatten für mehr Tiefe */
  }

  .artist img:hover {
    transform: scale(1.05); /* leichtes Vergrößern beim Hover */
    transition: transform 0.3s ease; /* sanfte Übergangsanimation */
    border: 4px solid white; /* weißer Rand mit 4px Breite */
  }

  .artist p {
    color: white;
    margin-top: 10px; /* optional: etwas Abstand nach oben */
    font-weight: 600; /* optional: etwas fetter */
    text-align: center; /* optional: zentriert den Text */
  }

  @media (max-width: 720px) {
    .artist-container {
      grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
      gap: 10px;                             /* kleineres Gap */
    }
    .artist img {
      width: 100px;
      height: 100px;
    }
  }
  
  .modal {
    display: none; 
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
  }
  
  .modal-content {
    background: rgba(255, 255, 255, 0.832); /* leicht transparent weiß */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 30px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto; /* HORIZONTAL ZENTRIEREN */
    margin-top: 5%;
    max-height: 80vh;       /* Begrenze die maximale Höhe auf 80% der Viewport-Höhe */
    overflow-y: auto;       /* Vertikaler Scrollbalken bei Überlauf */
}
@media (max-width: 720px) {
  .modal-content{
    height: 60vh;
  }
}
#songList {
    width: 80%;
    margin: 20px auto;

  }
  
  #songList li {
    height: 60px;
    border: 2px solid #000;
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    list-style-position: inside; /* Nummer innerhalb des Elements */
    text-align: center;
    justify-content: space-between;

  }
  
  #songList li:hover {
    background-color: #e0e0e0;
  }
  
  #songList li input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-left: 10px;
  }
  #songList li.selected {
    background-color: #ff6f3c;
    color: white;
    font-weight: bold;
  }
  
  
  button {
    background: none;
    border: 2px solid #ff6f3c;
    color: #ff6f3c;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    user-select: none;
    margin-top: 20px;
  }
  
  /* Optional: Hover-Effekt für bessere UX */
  button:hover {
    background-color: #ff6f3c;
    color: white;
  }
  


  @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.artist:nth-child(1) {
  animation-delay: 0.2s;
}
.artist:nth-child(2) {
  animation-delay: 0.4s;
}
.artist:nth-child(3) {
  animation-delay: 0.6s;
}
.artist:nth-child(4) {
  animation-delay: 0.8s;
}
.typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
 
}

@keyframes fadeDown {
  0% {
      opacity: 0;
      transform: translateY(-20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.choose-artist-header {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  margin-top: 20px;
  opacity: 0; /* Anfangszustand für Animation */
  animation: fadeDown 1s ease forwards;
  animation-delay: 0.3s; /* leichter Delay für sanften Einstieg */
}

#songSearch{
  padding: 8px;
  width: 80%;
  margin-top: 10px;
  border : 2px solid #000000;
  border-radius: 10px;
}



