@charset "UTF-8";

:root {
    --font-family: "Gill Sans", sans-serif;
    --font-family-headers: "Gill Sans", sans-serif; /* Incase you want a seperate one */

    --content-width: 1100px;
    --grid-margin: 10px;

    --background: url('/images/background.gif');
    --background-section: rgba(197, 149, 255, 0.63);
    --background-section-sidebar: rgba(219, 164, 255, 0.63);
    --background-popup: #2D0042;

    --border: 2px solid #A0A0A0A0;
    --border-radius: 5px;

    --color-text: #e5d2ff;
    --color-link: #e5cfff;
    --color-link-hover: #a171ff;
    --color-link-disabled: #6C6C6C;
    --color-header-1: #dabaff;
    --color-header-2: #FBBEFF;
    --color-header-3: #FFD0FF;
    --color-header-4: #FFE1FF;
    --color-header-5: #FFF2FF;
    --color-header-6: #FFFFFF;

    --nav-prefix: "✿ ";
}

html {
    min-width: 100%;
    position: relative;
    height: 100%;
}

body {

    background: var(--background);
    background-image: linear-gradient(rgba(197, 149, 255, 0.63), rgba(237, 194, 255, 0.63)), url('../images/background.gif');
    background-attachment: fixed;
    margin: 0 auto;
    overflow-x: hidden;
    font-family: var(--font-family);
    color: var(--color-text);
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headers);
    margin: 5px auto 10px auto;
}

h1 {
    font-size: 56px;
    color: var(--color-header-1);
}

h2 {
    font-size: 30px;
    color: var(--color-header-2);
}

h3 {
    font-size: 28px;
    color: var(--color-header-3);
}

h4 {
    font-size: 22px;
    color: var(--color-header-4);
}

h5 {
    font-size: 20px;
    color: var(--color-header-5);
}

h6 {
    font-size: 14px;
    color: var(--color-header-6);
}

p {
    margin: 10px auto;
    font-size: 20px;
}

a {
    color: var(--color-link);
    text-decoration: none;
    font-weight: 600;
}

a:hover { color: var(--color-link-hover); }

a.disabled {
    pointer-events: none;
    color: var(--color-link-disabled);
}

.hidden { display: none; }

section {
    padding: 8px 16px;
    margin-bottom: calc(var(--grid-margin) * 1.5);
    border-radius: var(--border-radius);
    border: var(--border);
    background: var(--background-section);
    background-attachment: fixed;
}

aside section { background: var(--background-section-sidebar); }

/* More specific stuff for default page */

#skip-to-content {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    color: #FFFFFF;
    background-color: #DA8BFF7C;
    font-size: 1.5rem;
    padding: 0.25rem;
    transform: translateX(-15rem);
    transition: transform 0.75s ease-in-out;
    z-index: 999999999;
}

#skip-to-content:focus,
#slip-to-content:focus-within { transform: translateX(0); }

.container {
    display: grid;
    grid-gap: var(--grid-margin) calc(var(--grid-margin) * 2);
    gap: var(--grid-margin) calc(var(--grid-margin) * 2);
    max-width: var(--content-width);
    width: 100%;
    margin: 0 auto;
    grid-template: "header header" auto "sidebar main" auto "footer footer" auto / 250px auto;
}

header {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    padding-top: 8px;
    text-align: center;
    grid-area: header;
}

header img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 250px;
}

aside {
    width: 250px;
    grid-area: sidebar;
}

aside nav ul {
    line-height: 1;
    padding: 0;
    list-style: none;
}

aside nav ul h3 a { color: inherit; }

aside nav ul h3:not(:first-child) { margin-top: 20px; }

aside nav ul li { margin: 2px auto; }

aside nav ul li a::before { content: var(--nav-prefix); }

aside nav ul li.disabled a {
    color: var(--color-link-disabled);
    pointer-events: none !important;
}

aside nav ul li a {
    display: inline-block;
    padding: 5px 10px;
    width: calc(100% - 20px);
    font-size: 20px;
    font-weight: bolder;
    transition: all .25s ease-in;
}

aside nav ul li a:hover,
aside nav ul li a:focus,
aside nav ul li a:focus-within {
    text-decoration: solid;
    padding: 5px 20px;
    width: calc(100% - 40px);
}

footer {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 15px;
    grid-area: footer;
    font-size: 18px;
}

#mobile-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999999;
    margin: 10px;
    padding: 10px;
    border: var(--border);
    border-radius: var(--border-radius);
    background: var(--background-popup);
    background-attachment: fixed;
}

.center-text
{
    text-align: center;
}

@media screen and (max-width: 580px) { #mobile-message { display: block; } }

.webring img { image-rendering: pixelated; }

.pfp {
    border-radius: 50%;
}

.pfp2 {
    border-radius: 10%;
}

.pfp:hover {
    content: url("/images/fox.jpg");
}
