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

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

 @font-face {
  font-family: Caprice;
  src: url('/assets/fonts/caprice.medium.woff');
}
 @font-face {
  font-family: BP Typewriter;
  src: url('/assets/fonts/bptypewriter.woff');
}

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

nav {
    background:transparent;
}

main {
    color: #fff;
    backdrop-filter: blur(20px);
	border:1px solid #000;
	border-radius:10px;
	-webkit-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.75);
}

nav,
footer {
    color: #fff
}

footer {border-top: 1px dotted #5C9DFF}

nav, main {
    border-bottom: none;
}

nav a{color:#C7DEFF;
   text-shadow: 0px 0px 3px #000, 0px 0px 5px #000;
text-decoration: none}

a {color:#fff;
   text-shadow: 0px 0px 5px rgba(59, 130, 246, 0.8), 0px 0px 10px rgba(59, 130, 246, 0.4);
text-decoration: none}

a:hover{text-decoration:none;
text-shadow: 0px 0px 5px #fff,0px 0px 10px rgba(59, 130, 246, 0.8), 0px 0px 25px rgba(59, 130, 246, 0.4)}

h1,h2,h3,h4,h5,h6 {color:#5C9DFF}

b,strong {color:#5C9DFF}

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

code {
    background-color: #001A40;
    padding: 0.1rem;
}

pre:has(code) {
    background-color: #001A40;
}
