*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    outline: none;
    font: inherit;
    list-style: none;
    quotes: none;
}

:root {
    --bg: #fff;
    --text: #101010;
    --link: #292929;
    --post-link: #0085bd;
    --post-link-hover-bg: #e6e5e6;
    --post-link-hover-text: #101010;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #333;
        --text: #fff;
        --link: #fff;
    }
}

html {
    font-size: 14px;
    background: var(--bg);
}

body {
    font-family: "Roboto Mono", monospace;
    background: var(--bg);
    color: var(--text);
    padding: 30px;
}

a {
    color: var(--link);
    text-decoration: none;
}

.site-wrapper {
    width: 100%;
    margin: 0 auto;
}

@media screen and (min-width: 880px) {
    .site-wrapper {
        width: 700px;
    }
}

.site-content {
    padding-bottom: 50px;
}

.site-header {
    margin-bottom: 30px;
}

.site-header h1 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.site-header h1 a:hover {
    text-decoration: underline;
}

.site-seperator {
    margin-top: 30px;
}

.post-content h1 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.post-content h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 40px 0 10px 0;
}

.post-content p,
.post-content li {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    list-style: disc inside;
}

.post-content a {
    color: var(--post-link);
    text-decoration: underline;
}

.post-content a:hover {
    background: var(--post-link-hover-bg);
    color: var(--post-link-hover-text);
    text-decoration: none;
}

.tight-list li {
    margin-bottom: 0;
}

.tight-list li:last-of-type {
    margin-bottom: 30px;
}

.format-page .post-header {
    margin-bottom: 30px;
}

.format-page .post-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}
