/* style.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-image: url('bg.jpg'); /* Pfad zu Ihrem Hintergrundbild */
    background-size: cover;
    background-position: center;
    color: #333;
    margin: 0;
    padding: 0;
    height: 100vh; /* Setzt die Höhe des Body auf die volle Viewport-Höhe */
    display: flex;
    align-items: center; /* Zentriert vertikal */
    justify-content: flex-end; /* Positioniert den Inhalt am rechten Rand */
    background-position: left;
}

@media (max-width: 600px) {
    body {
        background-position: -200px 0;
    }
}

.container {
    padding: 20px;
    max-width: 800px;
    margin: 0 5% 0; /* Rechter Rand von 10%, links automatisch */
    background-color: rgba(255, 255, 255, 0.8); /* Leichte Transparenz */
    border-radius: 8px;
    overflow: auto;
    max-height: 80vh;
}

.logo {
    width: 250px;
    margin: 10px auto;
}

.announcement {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 30px 0;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    text-align: left; /* Text linksbündig */
}

.header {
    font-size: 24px;
    margin-bottom: 20px;
}

.message {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.legal-links {
    margin-top: 30px;
}

.legal-links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

.legal-links a:hover {
    text-decoration: underline;
}

h1 {
    color: #000;
    margin: 20px 0;
}

p {
    text-align: left;
    line-height: 1.6;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
