html {
    cursor: url(https://solradguy.neocities.org/favicon/fuuenken.ico), auto;
    scrollbar-width: thin;
    scrollbar-color: #a32309 #120101;
    /* scrollbar code for Firefox */
}

:root {
    --backgroundcolor: #020010;
    --backgroundgradient: linear-gradient(#100200 80%, #400398);
    --h1color: #00daff;
    --h2color: #fb5e11;
    --h2link: #ffb900;
    --thiccdivider: #df00ff;
    --ptext: #00ffe9;
    --bold: #ffd67b;
    --textshadow: #ff0000;
    --linkcolor: #ff8d42;
    --linkhover: #ff00c7;
    --txtselectfont: #ffffff;
    --txtselectbg: rgba(207, 0, 0, 0.28);
    --postbackgroundimage: linear-gradient(#000000cb, #000aff46 99%);
    --postbackgroundcolor: rgba(0, 0, 0, 0.66);
    --matrixblend: linear-gradient(#000000ac, #000aff42 99%);
}

div {
    font-size: 15px;
    line-height: 20px;
}

body {
    font-family: "Space Mono", monospace;
    font-weight: normal;
    font-size: 13px;
    color: var(--ptext);
    background-color: var(--backgroundcolor);
    background-image: var(--backgroundgradient);
    background-repeat: no-repeat;
    background-attachment: fixed;
     height: 100%;
    margin: 0;
}

#mainshit {
    width: 60%;
    top: 9px;
    margin: -15px 8% 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.post {
    border-radius: 13px;
    width: 74%;
    padding: 33px;
    margin: 3px auto 0 auto;
    background-image: var(--postbackgroundimage);
}

::-moz-selection {
    /* Code for Firefox */
    color: var(--txtselectfont);
    background: var(--txtselectbg);
}

::selection {
    color: var(--txtselectfont);
    background: var(--txtselectbg);
}

h1 {
    font-family: "Girassol", monospace;
    line-height: 23px;
    font-size: 24px;
    margin-bottom: 4px;
    font-weight: bolder;
    color: var(--h1color);
    text-shadow: 0 0 5px var(--textshadow);
    text-transform: uppercase;
}

h2 {
    font-family: "Girassol", monospace;
    font-weight: 400;
    color: var(--h2color);
}

h3 {
    font-family: "Girassol", serif;
    font-size: 21px;
    font-weight: 400;
    color: var(--h2color);
    text-align: left;
    padding-top: 22px;
    margin: -7px;
}

a h3 {
    color: var(--h2link);
}

a:hover h3 {
    color: var(--linkhover)
}

p {
    font-family: "Space Mono", monospace;
    font-weight: normal;
    font-size: 13px;
    color: var(--ptext);
    text-shadow: 0 0 5px var(--textshadow);
    cursor: crosshair;
    text-align: left;
}

a {
    font-family: "Space Mono", monospace;
    font-weight: bold;
    text-decoration: none;
    color: var(--linkcolor);
}

a:hover {
    color: var(--linkhover);
}

ol,
li {
    color: var(--bold);
    text-align: left;
}

.lists {
    text-decoration: none;
}

.lists dt {
    font-family: "Space Mono", monospace;
    font-weight: bold;
    font-size: 13px;
    color: var(--bold);
}

dl {
    text-align: left;
    color: var(--ptext);
    font-weight: normal;
    font-size: 13px;
}

dd {
    font-family: "Space Mono", monospace;
    text-decoration: none;
    color: var(--ptext);
}

b {
    color: var(--bold);
    font-weight: 100;
}

blockquote {
    font-size: 12px;
    font-family: "Space Mono", monospace;
    color: var(--ptext);
    text-align: left;
    border-left: 3px var(--linkhover) solid;
    border-spacing: 5px;
    padding: 8px;
}

.underline {
    border-bottom: solid 1px var(--linkhover);
}

/*==========  centered image captions ==========*/
.image-caption {
    text-align: center;
    font-size: smaller;
    margin: -1px;
    color: var(--linkhover);
    font-weight: bold;
}

.thiccdividerline {
    border-bottom: 5px solid var(--thiccdivider);
}


/*==========  makes a line to divide shit ==========*/
.dividerline {
    border-bottom: solid 1px;
    color: var(--linkhover);
    width: 90%;
    padding: 1%;
    margin: 2% 0 auto 5%;
    justify-content: center;
    align-items: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*==========  centers shit ==========*/
.centering {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*========== Adds a big space after something ==========*/
.bigspace {
    height: 30px;
}

/*==========  subsection/subheader text ==========*/
.subheader {
    font-family: "Girassol", serif;
    text-decoration: none;
    font-size: 20px;
    font-style: normal;
    color: var(--linkhover);
    border: none;
    margin: 2% 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 100%;
}

/*========== styling for blog date text ==========*/
.date {
    font-family: "Girassol", serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    color: var(--linkhover);
}

#content {
    position: relative;
}

#content img {
    position: fixed;
    z-index: -5;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0 auto 0 auto;
}

canvas {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -6;
    top: 0;
    left: 0;
    margin: 0 auto 0 auto;
}

/*======= mobile device code starts here =======*/
@media(max-width:1000px) {

    div {
        font-size: 13px;
        flex-direction: column;
    }

    p {
        margin-bottom: 9px;
        letter-spacing: normal;
        font-size: 13px;
    }

    #mainshit {
        position: relative;
        width: fit-content;
        margin: -5px auto 0 auto;
        top: 0;
        order: 1;
    }

    .post {
        width: fit-content;
        margin: 3px auto 0 auto;
        background-color: var(--postbackgroundcolor);
    }

    .indexbutton {
        text-decoration: none;
        margin: 2%;
    }

    #content {
        order: 2;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    #content img {
        padding-top: 0%;
        position: fixed;
        height: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
