/* Grundlegende Einstellungen */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* grauer Hintergrund */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container für zentrierten Inhalt */
.container {
    text-align: center;
}

/* Logo */
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* Textblöcke */
.text-block {
    color: #000;
}

.main-text {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.sub-text {
    font-size: 14px;
    color: #333;
}
