/*
   Keine externen Schriften, kein CDN, keine Tracker (Prinzip 6). Der System-Font-Stack
   kostet nichts, lädt nichts nach und verrät niemandem, wer diese Seite besucht.
*/
:root {
    --text: #1c1c1e;
    --muted: #6b6b70;
    --line: #e3e3e6;
    --bg: #ffffff;
    --notice-bg: #f6f6f7;
}

html, body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

article {
    max-width: 38rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

h1:focus {
    outline: none;
}

h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 0.25rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--muted);
    margin: 0 0 2rem;
}

.notice {
    margin-top: 2.5rem;
    padding: 1rem 1.25rem;
    background: var(--notice-bg);
    border-left: 3px solid var(--line);
}

.notice p {
    margin: 0;
    color: var(--muted);
}

.validation-message {
    color: #b32121;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "Da ist etwas schiefgegangen.";
}
