#back-button-container {
    text-align: center;
    margin-top: 20px;
  }
  
  #back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1d1d1d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  #back-button:hover {
    background-color: #444;
  }
/* Allgemeine Stile */
body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  /* Header-Bereich */
  header {
    background-color: #1d1d1d;
    color: #fff;
    padding: 20px 15px;
    text-align: center;
    font-size: 1.5em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  header h1 {
    margin: 0;
    font-size: 2rem;
  }
  
  /* Hauptinhalt */
  main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  main h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1d1d1d;
  }
  
  main p {
    margin-bottom: 15px;
    text-align: justify;
  }
  
  main ul {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 40px;
  }
  
  main ul li {
    margin-bottom: 10px;
  }
  
  /* Links */
  a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  a:hover {
    color: #0056b3;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 10px 15px;
    color: #666;
    font-size: 0.9em;
  }
    
  /* Spendenbutton-Styling */
.donate-container {
  text-align: center; /* Zentriert den Button */
  margin: 20px 0; /* Abstand nach oben und unten */
}

.donate-button {
  display: inline-flex; /* Ensures logo and text are aligned horizontally */
  align-items: center; /* Vertically aligns elements */
  justify-content: center; /* Centers elements horizontally */
  background-color: #0070ba; /* PayPal blue */
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 5px 15px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.donate-button:hover {
  background-color: #005ea6; /* Darker blue on hover */
  transform: translateY(-2px); /* Slight lift effect */
  color: #fff;
}

.donate-button:active {
  transform: translateY(0); /* Reset lift effect */
}

.paypal-logo {
  width: 35px; /* Adjust size of the logo */
  height: 35px; /* Maintain aspect ratio */
  margin-right: 10px; /* Space between logo and text */
  vertical-align: middle; /* Ensures alignment with text */
  margin-left: -5px;
}

.donate-text {
  text-align: center;
  font-size: 1rem;
  color: #333; /* Dunkelgrau für gute Lesbarkeit */
  margin-bottom: 10px; /* Abstand zwischen Text und Button */
  line-height: 1.5; /* Angenehme Zeilenhöhe */
}
