h1 {
    color: var(--default_accent);
}

a.unstyledLink {
    color: var(--default_accent);
    font-size: 32px;
    font-weight: bold;
}

/*  Idea for markdown # before headings from risotto hugo theme
    https://github.com/joeroe/risotto/
    https://github.com/joeroe/risotto/blob/03107cd9b46520e488634ef8b288dc0a0eaea645/static/css/typography.css#L42 */
.single {
    h1:before { content: "# ";}
    h2:before { content: "## "; }
    h3:before { content: "### "; }
    h4:before { content: "#### "; }
    h5:before { content: "##### "; }
    h6:before { content: "###### "; }
}