body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #e1bee7, #f3e5f5);
    color: #333;
    margin: 0;
    padding: 0;
    display: flex; /* Flexbox auf den Body anwenden */
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
    height: 100vh; /* Höhe des Viewports nutzen */
}

.container {
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header {
    text-align: center;
    border-bottom: 2px solid #6a1b9a;
    padding-bottom: 10px;
}

.logo {
    width: 100px;
}

h1 {
    color: #6a1b9a;
}

.button-area {
    display: flex;
    justify-content: space-around; /* Zentriert die Buttons */
    margin-top: 20px; /* Abstand nach oben */
}

button {
    padding: 15px 25px; /* Erhöht das Padding für größere Buttons */
    background-color: #8e24aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px; /* Erhöht die Schriftgröße */
}

button:hover {
    background-color: #7b1fa2;
}