
body {
  font-family: Arial, sans-serif, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji";
  margin: 0;
  padding: 0;
  background-color: #eee;
  color: #333;
}
h2{
    color: #7E57C2;
}
header {
  background-color: #7E57C2; /* Violetter Header */
  color: #fff;
  padding: 20px;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
}
main {
  padding: 20px;
  text-align: center;
}
.intro {
  margin: 20px 0;
}
.features, .download {
  margin: 40px 0;
}
.features h2, .download h2 {
  color: #7E57C2;
  margin-bottom: 10px;
}
.features img, .download img {
  width: 80%;
  max-width: 500px;
  margin: 20px 0;
  border-radius: 10px;
}
footer {
  background-color: #7E57C2;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
}
.button {
  background-color: #7E57C2;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
}
.button:hover {
  background-color: #673AB7;
}
.features ul {
    list-style-type: none; /* Entfernt die Aufzählungszeichen */
    padding: 0; /* Entfernt den Abstand links */
    margin: 0; /* Entfernt zusätzlichen Abstand */
  }
/* Popup-Styling */
.popup {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .popup-content h2 {
    margin-top: 0;
    color: #7E57C2;
  }
  
 /* Input- und Select-Felder */
.popup-content input,
.popup-content select,
.popup-content textarea {
  width: calc(100% - 20px); /* Gleichmäßige Breite mit Abzug für Innenabstand */
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box; /* Sorgt dafür, dass padding im Element bleibt */
}
  
  .popup-content input[type="submit"] {
    background-color: #7E57C2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .popup-content input[type="submit"]:hover {
    background-color: #673AB7;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
  }
  
  .close:hover {
    color: #000;
  }

/* Popup-Fenster */
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px; /* Innenabstand gleichmäßig */
  border-radius: 10px;
  width: 400px; /* Breite des Formulars */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  box-sizing: border-box; /* Macht padding konsistent */
}
/* Stile für Fehlermeldungen */
.form-error {
  color: red;
  background-color: #ffe6e6; /* Optional: leichter roter Hintergrund */
  border: 1px solid red; /* Optional: roter Rahmen */
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.error-message {
  margin: 0;
  font-weight: bold;
}