@font-face {
    font-family: "BoldPixels";
    src:
        url("https://github.com/YukiPixels/Boldpixels/raw/refs/heads/main/boldpixels.woff2")
            format("woff2"),
        url("https://github.com/YukiPixels/Boldpixels/raw/refs/heads/main/boldpixels.woff")
            format("woff"),
        url("https://github.com/YukiPixels/Boldpixels/raw/refs/heads/main/boldpixels.ttf")
            format("truetype");
    font-weight: normal;
    font-style: normal;
}
:root {
    --accent: #8f36cf;
    --background: #ffffff;
    --text: #000000;
}
@media (prefers-color-scheme: dark) {
    :root {
        --accent: #a860db;
        --background: #222222;
        --text: #ffffff;
    }
}

html {
    background-color: var(--background);
    font-family: "BoldPixels", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: var(--text);
}

strong {
    color: var(--accent);
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
}

h1 {
    font-size: 48px;
    text-align: center;
}
h1, h2, h3{
    font-style: normal;
    font-weight: normal;
}

p,
li {
    font-size: 16px;
}

header {
    padding: 0 20px;
    border-bottom: var(--text) solid 1px;
}
header p {
    font-size: 80px;
    text-align: center;
    margin: 0;
}

#content {
    max-width: 798px;
    margin: 0 auto;
}

footer {
    max-width: 800px;
    margin: auto auto 0 auto;
    display: flex;
    flex-direction: column;
    height: 60px;
}

footer span#copyright {
    font-size: 16px;
}
