<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --color-primary: #006341;
    --color-primary-light: #ebeeeb;
    --color-secondary: #3fae2a;
    --color-grey-light: #f2f2f2;
    --color-grey-dark: #a7a9ac;
    --color-alg-grey: #909390;
    --color-charcoal: #212721;

    --font-primary: "Source Sans Pro", arial, sans-serif;
}

html {
    font-family: var(--font-primary);
    background-color: #f2f2f2;
}

h1 {
    font-family: var(--font-primary);
    color: white;
    font-weight: bold;
}

h2 {
    color: white;
    font-weight: normal;
}

.h2-sub {
    font-weight: 300;
    font-size: 1em;
}

h5 {
    color: var(--color-primary);
}

.link {
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: normal;
}</pre></body></html>