/* COLORS
You can edit these and use them! Use css color names (e.g. "red", "purple") or hex codes (e.g. #00ff00). */
:root {
    /* base white with orange highlight
    --main-bg-color: white;
    --secondary-bg-color: orange;
    --main-fg-color: black;
    --main-highlight-color: #e4e4e4;
    --box-gradient-base: deeppink;
    */
       /*Sunny Hue Colourscheme*/
        --main-bg-color: #f7f4ea;
        --secondary-bg-color: #ded9e2;
        --main-fg-color: #22223b;
        --gradient-second: #c0b9dd;
        --main-highlight-color: #75c9c8;
        --contrast-white: white;
}

/* 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-highlight-color) #00000000;
    scrollbar-width: 1rem;
}

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

body {
    background-color: var(--main-bg-color);
    background-image: url("/assets/images/otis-redding.png");
    background-position: left top;
    background-repeat: repeat;
    background-attachment: scroll;
}

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

header {
    line-height: 1.3;
}

h1, h2, h3 {
    line-height: 1.3;
}

nav:not(#pagination) {
    background-color: var(--secondary-bg-color);
    background-image: url("/assets/images/arches.png");
    position: fixed;
    top: 0rem;
    left: 0rem;
    width: 9rem;
    height: 100%;
    border-right: 3px solid var(--main-fg-color);
    gap: 3rem;
    padding: 0rem;
    padding-top: 1rem;
}

nav:not(#pagination) ol {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

nav:not(#pagination) ol li {
    width: 100%;
    gap: 1rem;
    background-color: var(--main-highlight-color);
    border-bottom: 3px solid var(--main-fg-color);
    border-right: 1px solid var(--main-fg-color);
}

nav:not(#pagination) ol ol li {
    width: 50%;
    gap: 1rem;
}

nav:not(#pagination) a {
    font-size: 1.5rem;
    color: var(--main-fg-color);
    text-decoration: none;
    font-weight: bold;
}
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);
}
