/* Allgemeine Seitenstile */
body {
    background: linear-gradient(135deg, #1db954, #191414);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  /* Container zentrieren */
  .container {
    background: rgba(0, 0, 0, 0.6);
    padding: 2em;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px;
  }
  
  /* Überschrift */
  h1 {
    margin-bottom: 1.5em;
  }
  
  /* Input-Felder und Buttons */
  input[type="text"] {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
  }
  
  .button {
    background-color: #1db954;
    color: #fff;
    padding: 0.8em 1.2em;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    display: inline-block;
    margin-bottom: 1em;
  }
  
  .button:hover {
    background-color: #17a44a;
  }
  
  /* Ergebnisanzeige */
  #result {
    margin-top: 1em;
    font-size: 1em;
    word-wrap: break-word;
  }
  
