/* Base styles */
:root {
    --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif,
        'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
        'Noto Color Emoji';
}

html,
body {
    font-family: var(--font-sans);
    background-color: white;
    margin: 0;
    padding: 0;
}
