/*
 * GLOBAL FONT SCALE EXPERIMENT (2× root)
 * -------------------------------------
 * Doubles the root font size vs wwwroot/css/site.css so most rem-based text
 * (Tabler, Bootstrap, hosting-premium, components) scales up together.
 *
 * Reversal: remove this file’s <link> from Components/App.razor and delete this file.
 * Details: FONT-SCALE-EXPERIMENT.md (project root).
 */

html {
    font-size: 28px;
}

@media (min-width: 768px) {
    html {
        font-size: 32px;
    }
}
