@font-face {
    font-family:"Jefferies";
    src:url("JefferiesExtended.TTF") format("truetype");
}

/* COLORS
You can edit these and use them! Use css color names (e.g. "red", "purple") or hex codes (e.g. #00ff00). */
:root {
    --main-bg-color: #18191A;
    --main-fg-color: #E4E6EB;
    --main-highlight-color: #f3b037;
    --main-header-color: #6c2831;
    --main-link-color: #f3b037;
    --hover-link-color: #6dc2ca;
    --active-link-color: #dad45e;
    --nested-ul-color: #35465e;
}

/* A brief explanation of the template's layout:
HTML - Properties here affect the entire layout.
    BODY
    NAV - The bar containing links to the homepage, all posts, about, etc...
        OL - Container for an ordered list of the links.
            LI - Container for each individual link.
                A - A link to another page.
    MAIN - The main view, where each post appears.
        HEADER - Container for the title and date of each post.
    NAV #pagination - (Only on blog posts) Container for links to the next and previous post.
        SECTION .pageprev - A container for the previous post link.
        SECTION .pagenext - A container for the next post link.
    FOOTER - A container for various details.
        P - Contains site & author details.
        ADDRESS - Contains email details (if specified).
        ASIDE - Contains last updated & RSS link. */

* {
    box-sizing: border-box;
}

body {
    color: var(--main-fg-color);
}

nav {
    font-family:"Grape Soda";
    font-size:1.5rem;
}

nav,
main,
footer {
    border: 1px solid var(--main-fg-color);
    border-radius:15px;
}

main {
    border-top: none;
    border-bottom: none;
    background-color: #00000079;
    color: var(--main-fg-color);
}

nav, main {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

footer, main, #pagination {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#pagination {
    border-bottom: none;
}

blockquote {
    margin-left: 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--main-highlight-color);
}

code {
    background-color: var(--main-highlight-color);
    padding: 0.1rem;
}

pre:has(code) {
    background-color: var(--main-highlight-color);
}


h1,h2,h3,h4,h5,h6 {
    color: var(--main-header-color);
}


ul li ul li::marker,
ol li ul li::marker {
    color: var(--nested-ul-color);
}

hr {
    color: var(--main-header-color);
    border: 2px dashed;
}


nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
main {
    line-height: 1.6rem;
}
main img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
}
footer {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
footer p,
footer address,
footer aside {
    margin: 0;
    margin-inline: 0;
    margin: 0.1rem;
}
footer address {
    font-style: normal;
}
footer aside {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
nav,
main,
footer,
.commentbox,
#disqus_thread {
    width: 90%;
    max-width: 42rem;
    padding: 1rem;
}