/** custom_rofhof.at.css **/
:root {
    --accent: #a13753;
    --accent-soft: #f6edf0;
    --text: #3e2a31;
    --muted: #7a6269;
    --bg: #fcfafb;
    --card: #ffffff;
    --border: #ead6dd;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 24px;
}

.content {
    width: 100%;
    max-width: 760px;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    box-shadow: 0 10px 30px rgba(161, 55, 83, 0.08);
}

.logo {
    display: block;
    width: 300px;
    height: 202px;
    object-fit: contain;
    margin: 0 auto 28px;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--accent);
    font-weight: 600;
}

p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
}

footer {
    background: var(--accent-soft);
    border-top: 1px solid var(--border);
    padding: 28px 20px 36px;
}

.footer-inner {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text);
    line-height: 1.8;
    font-size: 0.98rem;
    white-space: pre-line;
    text-align: center;
}

.footer-inner a {
    color: var(--accent);
    text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .content {
    padding: 28px 20px;
    }

    .logo {
    width: 220px;
    height: auto;
    }
}
