:root {
    color-scheme: dark;
    --page-background: #101112;
    --text-primary: #f2f2f0;
    --text-secondary: #dededb;
    --line: #5a5b5b;
    --accent: #ff6600;
    --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--page-background);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--page-background);
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--accent);
    color: #111;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 5px;
}

h1:focus {
    outline: none;
}

#blazor-error-ui {
    display: none;
}
