body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: #211551;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header img {
    height: 40px;
    position: absolute;
    left: 15px;
}

.iframe-container {
    flex: 1;
    display: flex;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background-color: #211551;
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 15px;
}

