@media screen and (prefers-color-scheme: light) {
    body {
        background-color: #ccc;
    }
}

@media screen and (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }
}

.container {
    width: 900px;
    margin: 0 auto;
    padding-top: 200px;
    display: flex;
    flex-direction: column;
}

.content-header-nav {
    width: inherit;
    font-family: 'League Gothic';
    font-size: 32pt;
    display: flex;
    justify-content: space-between;
}

.content-header-nav-button {
    text-decoration: none;
    color: inherit;
    padding: 4pt 10pt;
}

.selflink {
    background-color: white;
    color: #001eff;
    font-weight: bold;
}

.content-header-bg-image {
    display: flex;
}

.content-article,
.content-article-body {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content-article-aside,
.content-header-nav {
    background-color: black;
    color: white;
}

.content-article-body,
.content-article-aside {
    margin-top: 12pt;
    padding: 12pt;
}

.content-article-aside {
    margin-right: 12pt;
    margin-bottom: 12pt;
    width: 35%;
}

body {
    font-size: 14pt;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}