@font-face {
    font-family: 'Noto Sans';
    src: url('/fonts/NotoSans-Variable.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: light dark;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 2em;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333333;
}

h1, h2 {
    color: #111111;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

h2 {
    margin-top: 1.5em;
    font-size: 1.3em;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1c1c1e;
        color: #e5e5e7;
    }

    h1, h2 {
        color: #ffffff;
    }

    a {
        color: #4ea1ff;
    }
}
