html {
    cursor: url(https://solradguy.neocities.org/favicon/fuuenken.ico), auto;
    scrollbar-width: thin;
    scrollbar-color: #a32309 #120101;
    /* scrollbar code for Firefox */
}

/* Default (actually dark) theme */
:root {
    --background-color: #240202;
    --pagebackground-color: #240202ca;
    --text-color: #e2cab8;
    --link-color: #ef9d48;
    --link-hover: #ec1b1b;
    --header2: #eec968;
    --header3: #adc1ca;
    --vnav-color: #bb4004;
    --date: #e36161;
    --boldtext: #eec968;
    --button1: #7c0a0a;
    --button2: #090008;
    --my-gradient: linear-gradient(to right, #7c0a0a, #090008);
    --headerdivider: #840d1d;
    --pagedivider: #3d0101;
    --glow1: #ea1919;
    --glow2: #840d1d;
    --glow3: #5e0721;
    --glow4: #5b0738;
    --glow5: #35031f;
    --r2n-bg-color: #7f0b0baf;
    --r2n-bg-gradient-1: #0000006b;
    --r2n-bg-gradient-2: #3107076c;
    --r2n-box-shadow: #0f0000;
    --r2n-font-color: #ece3cb;
    --r2n-border-color: #690303;
    --r2n-bg-color-hover: #170000cb;
    --r2n-bg-hover: #000;
    --r2n-font-color-hover: #a10909;
    --texthighlight-font: rgb(255, 191, 0);
    --texthighlight-bg: rgba(255, 0, 0, 0.48);
}

/* Light theme */
/* I know the name is .dark-theme but it breaks if it's switched to .light-theme. No I don't know why. */
body[data-theme="dark"] {
    --background-color: #eeddc6;
    --pagebackground-color: #eeddc6e2;
    --text-color: #333;
    --link-color: #003bd3;
    --link-hover: #373093;
    --header2: #240202;
    --header3: #b72d0e;
    --sideheader: #3e0094;
    --vnav-color: #8d1c12;
    --date: #951414;
    --boldtext: #b21e20;
    --button1: #e7c18b;
    --button2: #e7ba66;
    --my-gradient: linear-gradient(to right, #fae8cf, #e7ba66);
    --headerdivider: #0f0d84;
    --pagedivider: #e4d1b5;
    --glow1: rgba(238, 221, 198, 0) 0%;
    --glow2: rgba(238, 221, 198, 0) 0%;
    --glow3: rgba(238, 221, 198, 0) 0%;
    --glow4: rgba(238, 221, 198, 0) 0%;
    --glow5: rgba(238, 221, 198, 0) 0%;
    --r2n-bg-color: #e5d09b;
    --r2n-bg-gradient-1: #f2d6aba3;
    --r2n-bg-gradient-2: #f0e2cb6c;
    --r2n-box-shadow: #715bb9;
    --r2n-font-color: #5f0a0a;
    --r2n-border-color: #c42828;
    --r2n-bg-color-hover: #f7cc8ca3;
    --r2n-font-color-hover: #4f44a7;
    --texthighlight-font: rgb(242, 217, 255);
    --texthighlight-bg: rgba(31, 2, 111, 0.48);
}

/* Portions of the following general styling code are based on bits of code from ThemeKings (www.themekings.net) */
/* Other portions were written by me (Sol Radguy) */
/* If you're reading this I'm assuming you wanted to borrow something from here */
/* Go ahead, have fun with it. Good luck lol */

/* ========== BODY ========== */
body {
    font-family: 'Inknut Antiqua', sans-serif;
    padding: 0;
    margin: 0;
    overflow: auto;
    font-size: 0.8em;
    background-image: url("https://solradguy.neocities.org/misc%20site%20images/bg-hos.png");
    background-color: var(--background-color);
    color: var(--text-color);
    background-repeat: no-repeat;
    background-position: right 0% bottom 100%;
    background-attachment: fixed;
}

/* ========== CONTAINERS ========== */
#container {
    padding: 0;
    margin: 0 auto 0 auto;
    width: 70%;
    position: relative;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#pageBody {
    padding: 3px;
    justify-content: center;
    background-color: var(--pagebackground-color);
    border-left: 1px double var(--pagedivider);
    width: 96%;
    position: relative;
    overflow: auto;
}

/* ========== HEADER ========== */
#head {
    background-image: url("https://solradguy.neocities.org/misc%20site%20images/header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 139px;
    position: relative;
    overflow: auto;
    align-self: center;
    display: flex;
}

/* ========== HEADER NAV ========== */
#menuBox {
    width: 100%;
    height: 30px;
    position: inherit;
    margin-top: 5px;
    margin-left: 210px;
    overflow: visible;
    padding: 3px;
    flex: auto;
    margin: 0 auto 0 auto;
    align-self: end;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 25%, rgb(31, 3, 2) 99%);
    box-shadow: 3px 3px 3px #0f0000;

}

#menuBox ul {
    font-family: "Inknut Antiqua", serif;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#menuBox ul li {
    padding: 0;
    margin: 0;
    display: inline;
}

#menuBox ul li a {
    width: 110px;
    height: 30px;
    background-position: 0 0;
    padding: 0;
    color: #eec968;
    /* offset-x | offset-y | blur-radius | color */
    text-shadow: 1px 1px 5px rgb(111, 0, 0);
    text-decoration: none;
    font-size: 95%;
    line-height: 240%;
    text-align: center;
    position: relative;
    float: right;
    font-weight: bold;
    overflow: visible;
}

#menuBox a:hover {
    color: #db0707;
    text-shadow: 1px 1px 5px rgb(255, 243, 223);
}

/* ========== COLUMNS ========== */
#col-L {
    width: 20%;
    position: relative;
    overflow: auto;
    padding: 0;
    margin: 0 0 0 16px;
    float: left;
    padding-top: 1%;
}

#col-R {
    width: 75%;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 15px 4px 0 0;
    float: right;
    border-left: 1px double var(--headerdivider);
    padding-top: 1%;
}

/* ========== CONTENT ========== */
.cnt-box {
    font-family: "Square Serif";
    font-size: 16px;
    padding: 0;
    margin: 10px 0 20 0;
    width: 100%;
    position: relative;
    overflow: auto;
    display: flex;
}

.cnt-info {
    color: var(--text-color);
    text-align: left;
    padding: 2%;
    margin: 0 auto 0 auto;
    width: 650px;
    position: relative;
    overflow: hidden;
}

/* ========== V NAVIGATION MENU ========== */
.Vnav-Box {
    width: 95%;
    position: relative;
    overflow: visible;
    padding: 0;
    margin: 0 0 20px 0;
}

.Vnav-Box h4 {
    margin: 0;
    padding: 0;
    height: 25%;
    position: relative;
    overflow: visible;
    color: var(--sideheader);
    text-align: left;
    text-indent: 3px;
    font-size: 120%;
}

.vnavBdy {
    margin: 0;
    padding: 0;
    width: 95%;
    position: relative;
    overflow: hidden;
}

.vnavFt {
    padding: 0;
    margin: 0;
    width: 90%;
    height: 20px;
    position: relative;
    overflow: hidden;
}

#templaterr-topbar {
    text-transform: uppercase;
    margin: 0;
    display: inline;
    padding: 0;
    width: 100%;
}

.vnavInfo {
    padding: 0;
    margin: 0 auto 0 auto;
    width: 90%;
    position: relative;
    overflow: hidden;
    color: var(--vnav-color);
}

.vnavInfo ul {
    margin: 0;
    list-style-type: none;
    position: relative;
}

.vnavInfo li {
    font-family: "Inknut Antiqua", serif;
    font-size: 96%;
    color: var(--link-color);
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    box-shadow: 1px 1px 1px var(--pagedivider);
}

.vnavInfo ul li a {
    background-position: 0 0;
    margin: 0;
    display: inline;
    padding: 0 0 0 5px;
    color: var(--vnav-color);
    text-decoration: none;
    line-height: 160%;
    text-align: left;
    position: relative;
}

.vnavInfo a:hover {
    color: var(--link-hover);
}

.vnavInfo li a.current {
    background-position: left top;
}


/* ========== PAGE LINK EFFECTS ========== */
a {
    color: var(--link-color);
    text-decoration: none;
}

a:link {
    color: var(--link-color);
}

a:active {
    font-weight: normal;
}

a:hover {
    text-decoration: underline;
    color: var(--link-hover);
}

a.footer:link {
    color: #aa8b53;
}

a.footer:visited {
    color: #aa8b53;
}

a.footer:hover {
    color: #c7b18b;
}

/*======= TEXT & TABLE DECORATION ==========*/

p,
blockquote {
    font-family: serif;
    font-size: 14px;
    font-weight: normal;
    cursor: crosshair;
}

h2,
h3,
h4 {
    font-family: "New Rocker", serif;
    text-transform: uppercase;
    border-bottom: 2px groove var(--headerdivider);
    background-position: left top;
    padding: 0;
    margin: 0 0 5px 0;
    font-size: 130%;
    color: var(--header2);
    text-align: left;
    text-indent: 15px;
    background-repeat: no-repeat;
    width: 90%;
    height: auto;
    position: relative;
    overflow: hidden;
    font-weight: lighter;
}

h1 {
    font-size: 14px;
    font-weight: bold;
    color: var(--header2);
    text-align: left;
    text-indent: 10px;
    border-bottom: 2px groove var(--headerdivider);
    height: auto;
    overflow: hidden;
}

h4 {
    font-size: 110%;
    overflow: visible;
}

b {
    color: var(--boldtext);
}


ul {
    font-size: 11px;
    font-family: "Georgia", serif;
    list-style-image: url("https://solradguy.neocities.org/gifs/puppy_20-red.png");
}

dl {
    font-family: 'Inknut Antiqua', sans-serif;
    font-size: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "New Rocker", serif;
    font-weight: lighter;
    cursor: crosshair;
}

h5 {
    font-size: 14px;
}

ul,
li,
dt,
dd {
    font-family: 'Inknut Antiqua', sans-serif;
    cursor: crosshair;
}

/* ========== TEXT HIGHLIGHT ========== */
::-moz-selection {
    /* Code for Firefox */
    color: var(--texthighlight-font);
    background: var(--texthighlight-bg) rgba(117, 0, 255, 0.28);
}

::selection {
    color: var(--texthighlight-font);
    background: var(--texthighlight-bg);
}

/* ========== TEXT HIGHLIGHT END ========== */


/*======= END TEXT & TABLE DECORATION ==========*/


/* ========== FOOTER ========== */
#foot {
    margin: 0 auto 0 auto;
    padding: 0;
    width: 80%;
    height: 10%;
    background-color: var(--background-color);
    position: relative;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
    border-top: 2px solid var(--headerdivider);
}

#foot-Info {
    padding: 0;
    margin: 0 auto 0 auto;
    width: 100%;
    height: auto;
    position: relative;
    overflow: auto;
}

#FT-col-L {
    width: 20%;
    position: relative;
    overflow: auto;
    padding: 0;
    margin: 0 0 0 10px;
    float: left;
}

#FT-col-L-info {
    font-size: 90%;
    text-align: center;
    padding: 0;
    margin: 20px auto 0 auto;
    width: 70%;
    position: relative;
    line-height: 119%;
}

#FT-col-R {
    width: 70%;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    float: right;
    font-size: 90%;
    color: var(--link-color);
}

.FT-info-links {
    padding: 0;
    margin: 10px auto 0 auto;
    position: relative;
    width: 100%;
    height: 30px;
    text-align: center;
}

.FT-info-links ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: auto;
}

.FT-info-links li {
    float: left;
}

.FT-info-links a {
    display: block;
    color: var(--link-color);
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
}

/*======= code for glowy text ==========*/
.glow {
    animation: glow 5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow:
            0 0 10px var(--glow1),
            0 0 20px var(--glow1),
            0 0 30px var(--glow2),
            0 0 40px var(--glow3),
            0 0 50px var(--glow4),
            0 0 60px var(--glow5),
            0 0 70px var(--glow5);
    }
}

/*======= end glowy text code ==========*/


/*======= mobile device code starts here =======*/
@media (max-width: 900px) {

    /* Hello welcome to my twisted mind */
    div {
        font-size: 13px;
        text-wrap: balance;
    }

    #container {
        position: relative;
        width: 100%;
        word-wrap: normal;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        overflow: hidden;
    }

    #pageBody {
        height: auto;
        margin: 0 auto 0 auto;
        width: 100%;
        overflow: visible;
        float: none;
        padding: -3px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        order: 1;
    }

    #head {
        width: 105%;
        height: 139px;
        /* top | right | bottom | left */
        margin: -1% auto auto -1%;
        overflow: visible;
        padding: 0;
        background-image: url("https://solradguy.neocities.org/misc%20site%20images/header.jpg");
        background-color: var(--background-color);
        border-bottom: 2px groove var(--headerdivider);
        order: 1;
    }

    #menuBox {
        font-family: "Inknut Antiqua", serif;
        width: 100%;
        height: auto;
        overflow: visible;
        position: relative;
        margin: 50px auto 0 auto;
        align-self: end;
        background: rgba(31, 3, 2, 0.774);
        box-shadow: 3px 3px 3px #0f0000;
    }

    #col-R {
        height: auto;
        width: 100%;
        overflow: visible;
        text-align: left;
        padding: 5px;
        order: 3;
        border-left: none;
    }

    #col-L {
        height: auto;
        width: 100%;
        overflow: visible;
        text-align: left;
        padding: 5px;
        border: none;
        right: 20px;
        order: 3;
    }

    .Vnav-Box {
        padding: 0;
        margin: 0 0 20px 0;
        width: 100%;
        position: relative;
        overflow: auto;
    }

    .vnavBdy {
        width: auto;
        overflow: visible;
        padding: 2px;
        flex: auto;
    }

    .vnavFt {
        display: none;
    }

    .vnavInfo {
        list-style-image: none;
        height: auto;
        width: 90%;
        overflow: visible;
        padding: 5px;
        flex: auto;
    }

    .vnavInfo ul {
        font-family: "Inknut Antiqua", serif;
        list-style-image: none;
        overflow: visible;
        float: left;
        columns: 3 auto;
        -webkit-columns: 3 auto;
        -moz-columns: 3 auto;
    }

    .vnavInfo li {
        font-size: 75%;
        width: 100%;
        padding: 4%;
        background: var(--r2n-bg-color);
        background: linear-gradient(to right, var(--r2n-bg-gradient-1), var(--r2n-bg-gradient-2));
        box-shadow: 1px 1px 1px var(--r2n-box-shadow);
        border: 1px solid var(--pagedivider);
    }

    .cnt-box {
        font-family: "Georgia";
        padding: 0;
        margin: 0 0 20px 0;
        width: 100%;
        position: relative;
        overflow: auto;
    }

    .cnt-info {
        color: var(--text-color);
        text-align: left;
        padding: 0;
        margin: 0 auto 0 auto;
        width: 94%;
        position: relative;
        overflow: inherit;
    }

    #foot {
        height: 100%;
        overflow: hidden;
        /* top | right | bottom | left */
        margin: 0 auto 0 -2%;
        text-align: left;
        flex: auto;
        padding: -2px;
        order: 3;
    }

    #foot-Info {
        padding: 0;
        margin: 0 auto 0 auto;
        width: 99%;
        height: 100%;
        position: relative;
        overflow: auto;
    }

    #FT-col-L {
        width: 21%;
        position: relative;
        overflow: hidden;
        padding: 0;
        margin: 0 0 0 16px;
        float: left;
        overflow-wrap: break-word;
    }

    #FT-col-L-info {
        width: 100%;
    }

    .FT-info-links {
        padding: 0;
        margin: 10px auto 0 auto;
        position: relative;
        width: 87%;
        height: 100%;
        text-align: center;
        line-height: 110%;
    }

    .responsive-iframe {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 56.25%;
        /* For aspect ratio */
    }

    .responsive-iframe iframe {
        position: absolute;
        overflow: scroll;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 5000px;
    }

    dt {
        width: 100%;
    }

    dl {
        display: inline-block;
    }

    table,
    td,
    th {
        font-size: 14px;
    }

    #right {
        display: none;
    }
}

#col-L {}