@font-face { font-family: Dyslexic; src: url(OpenDyslexic-Regular.otf); }

html {
    --text: #1a052e;
    --bg: #f0d8bc;
    --high: #4e2444;
    --warn: red;
    --info: blue;
}

@media screen and (prefers-color-scheme: dark) {
    html {
    --bg: #1a052e;
    --text: #f0d8bc;
    }
}

body {
    font-size: 4vh;
    background-color: var(--bg);
    color: var(--text);
    font-family: Dyslexic;
}

/* article { */
/*     margin: auto; */
/*     width: min(100%, 30em); */
/* } */


@media screen and (min-width: 1024px) {
    ul {
	column-count: 2;
	column-gap: 2em;
	column-rule-style: solid;
	column-rule-color: : var(--text);
    }
}

h1 {
    text-align: center;
}
