:root {
    --text: #000;
    --bg: #fff;
}

body {
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #fff;
        --bg: #000;
    }
}

@font-face {
    font-family: 'MyFontSubset';
    src: url('./charm-nuclear-subset.woff2') format('woff2');
    /*font-weight: 400;*/
    /* Match the weight of the font you downloaded */
    /*font-style: normal;
    font-display: swap;*/
}

@font-face {
    font-family: 'MyFontSubset2';
    src: url('./michroma-nuclear-subset.woff2') format('woff2');
    /* Match the weight of the font you downloaded */
    /*font-style: normal;
    font-display: swap;*/
}

a {
    font-family: 'MyFontSubset', sans-serif;
}

#bigtext {
    font-family: 'MyFontSubset2', sans-serif;
}
