/* 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: #242424;
    --main-fg-color: #E0E0E0;
    --main-highlight-color: #0053c0;
}

/* 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. */

html {
    scrollbar-color: var(--main-fg-color) #00000000;
}

body {
    background-color: #121212
}

h1 {
    color: #0053c0
}

nav {
    background-color: var(--main-bg-color);
}

a {
    color: #0053c0
}

main {
    background-color: var(--main-bg-color);
    color: var(--main-fg-color);
}

ul
li
a   {
    list-style-type: none;
    font-size: 28px;
    line-height: 40px;
}

table {
    border:1px solid #E0E0E0;
    border-collapse: collapse;
    table-layout: auto;
    width: 100%
}

th, td {
    border:1px solid #E0E0E0;
    padding: 15px;
    height: 75px;
}

tr:hover {
    background-color: #2000C0;
}

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

nav, main {
    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);
}
