@font-face {
	font-family: 'JF-Dot-Kappa20';
	src: url('../../fonts/JF-Dot-Kappa20.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

@font-face {
  font-family: 'JF-Dot-jiskan24';
  src: url('../../fonts/JF-Dot-jiskan24.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* 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: rgb(0, 0, 0);
    --main-fg-color: rgb(204, 213, 236);
    --main-highlight-color: #3d3a61;
}

/* 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{
    font-family: 'JF-Dot-Kappa20';
    color: var(--text);
    background: url('../../images/landscape.png') center center fixed;
    -webkit-background-size: center;
    -moz-background-size: center;
    -o-background-size: center;
    background-size: center;
    image-rendering: pixelated;
    font-smooth: never;
    -webkit-font-smoothing : none;
}

body a{
    color:rgb(0, 162, 255);
}

body a:hover{
    color:aqua;
}

nav {
    background-color: var(--main-bg-color);
    font-family: 'JF-Dot-jiskan24';
}

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

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

footer {
    background-color:black;
    color: var(--main-fg-color);
    font-family: 'JF-Dot-jiskan24';
}

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;
    font-family: 'JF-Dot-jiskan24';
}

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

iframe.yt-shortcode {
  height: 50vw;
  margin: 1rem 0;
  max-height: 25rem;
  width: 100%;
}