/* The app is a single full-bleed 3D stage, so the document itself never scrolls. */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #05070f;
    color: #e7ecf8;
    color-scheme: dark;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    overscroll-behavior: none;
}

h1:focus {
    outline: none;
}

a {
    color: #6ea8fe;
}

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

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }
