body {
    background-color: #f0f0f0;
    color: #333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* Option 3: Body-Margin für Footer */
    margin-bottom: 20px; /* Stellen Sie sicher, dass dies mindestens so hoch ist wie der Footer */
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.center-image {
    margin: 0 20px;
}

/* Iframe-Stile */
.iframe-container {
    margin-bottom: 20px; /* Ursprünglicher Abstand */
    /* Option 1: Abstand der iframe-container anpassen */
    margin-bottom: 20px; /* Erhöhen Sie diesen Wert, bis der Inhalt sichtbar ist */
}

h1 {
    color: #007acc;
}

p {
    margin-bottom: 20px;
    text-align: center;
}

banner {
    background-color: #ffcc00;
    color: #333;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    width: 100%;
    /* Option 2: footer Nicht Fixiert */
    position: fixed; /* Ändern Sie dies zu 'relative', falls Sie den Footer im Fluss des Dokuments haben möchten */
    bottom: 0;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

img {
    margin-top: 20px;
}
