/* Basis-Stile fuer die gesamte Seite */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

/* Container fuer den Inhalt */
.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Bild im oberen Bereich */
.image-container1 img {
    max-width: 500px;  /* Maximale Breite auf 500px begrenzen */
    max-height: 300px; /* Maximale Höhe auf 300px begrenzen */
    width: auto;       /* Automatische Breite bei kleineren Bildern */
    height: auto;      /* Automatische Höhe bei kleineren Bildern */
    display: block;
    margin: 0 auto;
}

/* Textbereich */
.text-container1 p {
    font-size: 1.2em;
    margin: 20px 0;
}

/* Bild im oberen Bereich */
.image-container2 img {
    max-width: 500px;  /* Maximale Breite auf 500px begrenzen */
    max-height: 300px; /* Maximale Höhe auf 300px begrenzen */
    width: auto;       /* Automatische Breite bei kleineren Bildern */
    height: auto;      /* Automatische Höhe bei kleineren Bildern */
    display: block;
    margin: 0 auto;
}

/* Textbereich */
.text-container2 p {
    font-size: 0.7em;
    margin: 10px 0;
}

/* Loginmaske */
.login-container {
    margin-top: 10px;
}

.login-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-container label {
    margin-top: 10px;
    font-size: 1em;
}

.login-container input {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-container button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #0056b3;
}

/* Textbereich */
.text-container3 p {
    font-size: 0.8em;
    margin: 10px 0;
}

/* Textbereich */
.text-container4 p {
    font-size: 1.0em;
    margin: 20px 0;
}
