@font-face {
    font-family: "GorillaTag";
    src: url("/static/gorilla-tag-font.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: rgb(24, 24, 24);
        font-family: "GorillaTag", sans-serif;
    }

    h1 {
        text-align: center;
        justify-content: center;
        color: white;
        font-family: "GorillaTag", sans-serif;
    }

    h2 {
        text-align: center;
        justify-content: center;
        color: white;
        font-family: "GorillaTag", sans-serif;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background-color: rgb(221, 221, 221);
        font-family: "GorillaTag", sans-serif;
    }

    h1 {
        color: rgb(0, 0, 0);
        font-family: "GorillaTag", sans-serif;
    }

    h2 {
        color: rgb(0, 0, 0);
        font-family: "GorillaTag", sans-serif;
    }
}