body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fe9b09;
}

header {
    padding: 20px;
}

.header-content {
    display: flex;
    align-items: center; /* Vertikale Zentrierung */
}

.logo {
    width: 100px; /* Breite des Logo-Platzhalters */
    height: 100px; /* Höhe des Logo-Platzhalters */
    display: inline-block;
}

.logo {
    max-width: 100%; /* Logo passt sich der Breite des Platzhalters an */
    max-height: 100%; /* Logo passt sich der Höhe des Platzhalters an */
}

.header-title {
    margin-left: 20px; /* Abstand zwischen Logo und H1-Text */
    font-size: 24px; /* Schriftgröße des H1-Texts */
    color: #fff; /* Textfarbe */
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px); /* Höhe des Hauptbereichs */
}

.iframe-placeholder {
    width: 90%; /* Breite des Iframe-Platzhalters */
    max-width: 1200px; /* Maximale Breite */
    height: 800px; /* Höhe des Iframes */
}

iframe {
    width: 100%;
    height: 100%;
    border: none; /* Kein Rahmen um das Iframe */
}
