/* Grundlayout für eine saubere Info-Seite */
body {
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background-color: #121212; /* dunkler Hintergrund */
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background-color: #1e1e1e;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

