body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('Titelbild.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #333;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Weißer, transparenter Overlay für Lesbarkeit */
    pointer-events: none; /* Damit der Inhalt klickbar bleibt */
    z-index: -1;
}

header {
    background-color: rgba(14, 58, 99, 0.85);
    color: white;
    text-align: center;
    padding: 2rem;
    border-bottom: 4px solid #0a2b4a;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

main h2 {
    color: #0e3a63;
    margin-bottom: 1rem;
}

main ol {
    margin-left: 1.5rem;
}

main ol li {
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: rgba(14, 58, 99, 0.85);
    color: white;
    border-top: 2px solid #0a2b4a;
}
