<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: BaWue Sans, Arial, sans-serif;
    color: #2a2623;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #fffc00;
    text-align: center;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px 2px rgba(42, 38, 35, 0.1);
}

.header__container {
    padding: 0 20px;
    width: 100%;
    text-align: left;
    max-width: 1120px;
}

.header__headline {
    margin: 0;
    display: flex;
}

.header__logo {
    height: 40px;
}

.main {
    width: 712px;
    margin: 100px auto;
    padding: 0 20px;
}

.kicker {
    font-size: 16px;
    margin: 0;
}

.headline {
    font-family: BaWue Serif, Georgia, sans-serif;
    font-size: 48px;
    margin: 0 0 20px;
}

.text {
    margin-bottom: 24px;
}

#errorDiv {
    overflow: auto;
    border: 1px solid rgb(82, 73, 66);
    padding-left: 10px;
    border-radius: 3px;
}

.footer {
    background-color: #2a2623;
    color: #fff;
    min-height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.footer__container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 1120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    height: 30px;
}

.footer__link-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.footer__link-item {
    margin: 5px 20px 5px 0;
    display: flex;
    align-items: center;
}

.footer__link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    font-size: 14px;
}

.footer__link:focus,
.footer__link:hover {
    text-decoration: underline;
    text-decoration-color: #fff;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

.footer__link-button {
    position: relative;
    min-width: 16px;
    font-size: 16px;
    margin-right: 12px;
}

.footer__link-icon {
    left: 50%;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition-property: color;
    height: 1em;
    width: 1em;
    fill: #fff;
}

@media (max-width: 1200px) {
    .footer__container {
        flex-direction: column;
    }

    .footer__logo {
        margin: 20px 0;
    }

    .footer__link-list {
        margin-bottom: 20px;
    }
}</pre></body></html>