/* Router splash styling.
 * Keep this page inline-style free so CSP can drop `style-src 'unsafe-inline'`. */

:root {
    color-scheme: dark;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    color: #9ca3af;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.router-splash {
    text-align: center;
    padding: 2rem;
}

.router-splash__label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
}

.router-splash__text {
    margin-top: 0.75rem;
    font-size: 1rem;
}

