/* since Brave kind of ignores prefers-color-scheme,
   default to dark; light should work on supported browsers */
:root {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --accent-color: #03dac6;
}

@media (prefers-color-scheme: light) {
    :root {
        --bg-color: #e0e0e0;
        --text-color: #121212;
        --accent-color: #03867a;
    }
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

/* TODO: Looks like we are limiting to 800px here - may be the key */

h1 {
    color: #bb86fc;
    margin-bottom: 20px;
}
