@font-face {
    font-family: 'CPC';
    src: url('/fnt/cpc464.woff2') format('woff2'),
    url('/fnt/cpc464.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    --font: 'CPC';
    --yellow: #ffff00;
}


body {
    background-color: #000000;
    font-family: var(--font), monospace;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

h1 {
    color: var(--yellow);
}