/* 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: white;
    --main-fg-color: black;
    --main-highlight-color: #356225;
}

/* 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;
}

@font-face {
    font-family: "New Rodin DB";
    src: url("../../fonts/New Rodin DB.otf");
}

@font-face {
    font-family: "New Rodin EB";
    src: url("../../fonts/New Rodin EB.otf");
}

b,
strong {
    font-family: "New Rodin EB";
    src: url("../../fonts/New Rodin EB.otf");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "New Rodin EB";
}


body {
    background: url("../../images/background.jpg");
    background-size: cover;
    background-attachment: fixed;
    font-family: "New Rodin DB";
}

nav {
    background: linear-gradient(rgba(15, 44, 11, 0.8) 0%,
            rgba(21, 49, 25, 0.8) 100%);
    margin-bottom: 1em;
    padding: 1em 0;
    border-radius: 15px;
}

a {
    color: rgb(61, 141, 42);
}

nav a {
    color: #ffffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: rgba(174, 236, 184, 0.93);
    color: black;
    border-radius: 15px;
}

nav li {
    padding-right: 1.5em;
}

main {
    background: linear-gradient(rgba(223, 255, 222, 0.8) 0%, rgba(122, 161, 128, 0.8) 100%);
    padding: 1.5em;
    border-radius: 15px;
    border: 3px rgb(67, 86, 65) solid;
    margin-left: 2em;
    margin-right: 2em;
    color: #000000;
}

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);
}

#pagination {
    margin-top: 1em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    padding: 1em;
    border: 3px rgb(67, 86, 65) solid;
    background: linear-gradient(rgba(223, 255, 222, 0.8) 0%, rgba(122, 161, 128, 0.8) 100%);
    color: #000000;
    margin-bottom: 0;
}

.pageprev,
.pagenext {
    text-align: center;
}

.pageprev a,
.pagenext a {
    color: rgb(61, 141, 42);
}

.pageprev a:hover,
.pagenext a:hover {
    background-color: transparent;
    color: rgb(61, 141, 42);
    text-decoration: underline wavy 2px;
    font-style: italic;
}

footer {
    background: linear-gradient(rgba(223, 255, 222, 0.8) 0%, rgba(122, 161, 128, 0.8) 100%);
    padding: 1.5em;
    border-radius: 15px;
    border: 3px rgb(67, 86, 65) solid;
    margin-top: 1em;
    margin-left: 2em;
    margin-right: 2em;
    color: #000000;
}

* {
  cursor: url(https://cur.cursors-4u.net/games/gam-12/gam1113.cur), auto;
}

a:hover {
  cursor: url(https://cur.cursors-4u.net/games/gam-12/gam1112.cur), auto;
}

abbr {
  cursor: url(https://cur.cursors-4u.net/games/gam-12/gam1103.cur), auto;
}