/* COLORS
You can edit these and use them! Use css color names (e.g. "red", "purple") or hex codes (e.g. #00ff00). */
:root {
    --background: linear-gradient(0deg,rgba(22, 0, 74, 1) 0%, rgba(0, 13, 112, 1) 19%, rgba(113, 57, 169, 1) 78%, rgba(215, 27, 190, 1) 100%);
	--content-background-color: #0F0B32;
    --main-highlight-color: #d006f9;
	--font: Helvetica, sans-serif;
	--heading-font: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'ＭＳ ゴシック' , 'MS Gothic', 'Noto Sans CJK JP', TakaoPGothic, sans-serif;
	--font-size: 12px;
	--text-color: #ffffff;
	--link-color: #d006f9;
	--link-color-hover: #d71bbe;
	--margin: 12px;
	--padding: 22px;
	--border: none;
	--round-borders: 4px;
}

/* 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(--link-color) var(--content-background-color);
	height: 100%;
}

body {
	background: var(--background) no-repeat;
	background-size: cover;
	background-attachment: fixed;
	height: 100%;
	font-family: var(--font);
	font-size: var(--font-size);
	cursor: url('icons/cursor.png'), auto;
}

a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
  cursor: url('icons/cursor2.png'), auto;
}

nav {
    background-color: var(--content-background-color);
}

main {
    background-color: var(--content-background-color);
    color: var(--text-color);
	border-radius: var(--round-borders);
	margin: var(--margin);
	padding: var(--padding);
}

nav,
main,
footer {
    border: var(--border);
	border-radius: var(--round-borders);
	margin: var(--margin);
	background-color: var(--content-background-color);
	color: var(--text-color);
}

nav, main {
    border: var(--border);
}

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

code {
    background-color: var(--main-highlight-color);
    padding: 0.1rem;
}

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