:root {
    --base-font-size: 13px;
    --spacing: var(--base-font-size);
    /* --font-display: "Xanh Mono", system-ui; */
    --font-sans: monospace;
    /* --font-serif: "Source Serif 4", ui-serif, system-ui; */
    --font-mono: monospace;
}

body {
    font-size: var(--base-font-size);
    font-family: var(--font-mono);
    font-weight: normal;
}

body p {
    font-size: 1em;
    line-height: 1.2em;
    color: var(--body);
    /* white-space: pre-wrap; */
}

a {
    color: var(--theme);
    text-decoration: underline;
    text-underline-offset: 1.5px;
}

a:hover {
    color: var(--theme-alt);
    text-decoration: underline;
    text-decoration-color: var(--theme-alt);
    text-underline-offset: 4px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
    overflow-wrap: break-word;
    margin: 1em 0em 0.8em 0em;
}

small {
    font-size: 0.6em;
    color: var(--side-note);
    display: block;
    line-height: 1.2;
}

h1 {
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 800;
}

h1 {
    font-size: 2em;
    line-height: 1.2em;
}