    body {
      font-family: 'Segoe UI', sans-serif;
      padding: 30px 20px;
      background-color: #121212;
      color: #f5f5f5;
      transition: background-color 0.4s, color 0.4s;
      max-width: 800px;
      margin: 0 auto;
    }

    h1 {
      text-align: center;
    } 

    h2 {
      text-align: left;
    }

    .top-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 30px;
    }

    .top-section button {
      margin-top: 50px; 
    }

    .tags {
      margin-bottom: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .tag {
      display: inline-block;
      padding: 8px 14px;
      background-color: #1e1e1e;
      border-radius: 20px;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s, transform 0.2s ease;
      user-select: none;
    }

    .tag:hover {
      transform: scale(1.07);
    }

    .tag.selected {
      background-color: #B59F7A;
      color: white;
    }

    .activity {
      margin-bottom: 10px;
      background-color: #1e1e1e;
      padding: 14px;
      border-radius: 10px;
      opacity: 0;
      transform: translateY(10px);
      animation: fadeInUp 0.4s ease forwards;
      cursor: pointer;
    }

    .description {
      margin-top: 8px;
      color: #ccc;
      font-size: 0.95em;
      display: none;
    }

    .activity.open .description {
      display: block;
    }

    #randomActivity {
      margin-top: 10px;
      padding: 14px;
      background-color: #1e1e1e;
      border-radius: 10px;
      font-weight: bold;
      color: #fff;
      display: none;
      max-width: 100%;
    }

    button {
      background-color: #B59F7A;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 1em;
      transition: background 0.3s, transform 0.2s ease;
    }

    button:hover {
      transform: translateY(-2px);
      background-color: #D1C0A1;
    }

    .scroll-top-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      background-color: #B59F7A;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.3s;
    }

    .scroll-top-button:hover {
      background-color: #D1C0A1;
      transform: scale(1.1);
    }

    .container {
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: auto;
    text-align: center;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    label {
    text-align: left; /* Linksbündig */
    font-weight: bold; /* Dickgedruckt */
    display: block; /* Label soll als Block angezeigt werden */
    margin-bottom: 5px; /* Abstände zum Textfeld */
    font-size: 16px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

    header {
      width: 100%;
      background-color: #1e1e1e;
      color: #fff;
      padding: 15px 0;
      text-align: center;
      border-radius: 10px;
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    nav a {
      color: #f5f5f5;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 20px;
      transition: background-color 0.3s;
    }

    nav a:hover {
      background-color: #B59F7A;
    }

    a {
      color: #B59F7A;
    }

   #lastrelease {
      margin-top: 10px;
      padding: 14px;
      background-color: #1e1e1e;
      border-radius: 10px;
      color: #fff;
      max-width: 100%;
   }