:root {
    color-scheme: light;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-synthesis: none;
    --black: #0a0a0a;
    --paper: #f2f1ed;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--black);
    margin: 0;
    min-width: 320px;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

button:disabled {
    cursor: not-allowed;
}

h1:focus {
    outline: none;
}

::selection {
    background: #0a0a0a;
    color: #fff;
}

.blazor-error-boundary {
    background: #0a0a0a;
    color: #fff;
    padding: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
