* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-overlay {
    background-image: url('JA-Logo-black.jpeg'); /* Füge hier den Pfad zu deinem Hintergrundbild hinzu */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.background-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dunkler transparenter Overlay */
    z-index: 1;
}

.modal {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px; /* Vergrößert den Innenabstand des Modals */
    border-radius: 15px; /* Rundere Ecken */
    text-align: center;
    width: 430px; /* Breite des Modals anpassen */
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Größerer Schatten */
}

h1 {
    font-size: 28px; /* Größere Schriftart für die Überschrift */
    margin-bottom: 15px;
}

p {
    font-size: 18px; /* Größere Schriftart für den Text */
    margin-bottom: 25px;
}

.button-container {
    display: flex;
    justify-content: space-between; /* Abstand zwischen den Buttons */
    gap: 20px; /* Hinzugefügt, um den Abstand zwischen den Buttons zu steuern */
}

.blue-button {
    background: linear-gradient(45deg, #004080, #4a90e2); /* Farbverlauf von links oben dunkel nach rechts unten hell */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 18px;
    flex: 1;
    max-width: 160px;
}

.blue-button:hover {
    background: linear-gradient(45deg, #4a90e2, #004080); /* Umgekehrter Farbverlauf beim Hover */
}
a.blue-button {
    text-decoration: none; /* Entfernt die Standard-Unterstreichung */
    display: inline-block; /* Damit es sich wie ein Button verhält */
}

