
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;      /* vertikal zentrieren */
    justify-content: center;  /* horizontal zentrieren */
    min-height: 100vh;        /* volle Höhe des Viewports */
    margin: 0;                /* Standard-Margins entfernen */
}

.container {
    max-width: 500px;
    text-align: left;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.impressum p {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.5;
}

.impressum .light {
    color: #b3b3b3;
    font-weight: normal;
}
