html {
    border-top: solid 6px #00f;
}

body {
    color: #e0e0e0;
    background-color: black;
    font-family: "Droid Sans Mono",
        "Courier New", Courier, monospace;
    font-size: 1.3em;
    line-height: 1.3;
    border-top: solid 6px #ff0;
    margin: 0;
}

@media screen and (prefers-color-scheme: light) {
    body {
        color: black;
        background-color: white;
    }
}

@media (prefers-color-scheme: dark) {
    img {
        opacity: .75;
        transition: opacity .5s ease-in-out;
    }

    img:hover {
        opacity: 1;
    }
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
    box-shadow: 0px 0px .2em rgba(200, 165, 165, 1);
    -webkit-box-shadow: 0px 0px .2em rgba(200, 165, 165, 1);
}

::-webkit-scrollbar-corner {
    background: #eff3ff;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 15/10),
only screen and (min-resolution: 150dpi) {
    body {
        font-size: 1.8em;
    }
}

ul {
    list-style: none;
    margin-left: 0;
    padding-inline-start: 0;
    line-height: 2;
}

.head-pic {
    bottom: -34px;
    left: -15px;
    /* position: relative; */
}

.pic {
    width: 9em;
    height: 9em;
    border-radius: 10em;
    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
    -webkit-box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
    -moz-box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
}

.head-item {
    width: 8.75em;
    display: inline-block;
    vertical-align: bottom;
    margin: 5px;
    padding: 0 0 20px 0;
}

.head-wrap {
    width: 90%;
    margin: auto;
    margin: 40px 0 40px auto;
}

.main-wrap {
    width: 90%;
    margin: auto;
    margin: 40px 0 40px auto;
}

h3 {
    margin: 1.5em 0 .5em 0;
    vertical-align: top;
    max-width: 34em;
    font-size: 1.5em;
    text-shadow: 0px 0px .2em rgba(200, 165, 165, .7);
    position: relative;
    font-weight: 100;
}

glitch {
    display: inline;
}

c {
    background-color: #edd;
    color: #777;
    border-radius: 6px;
    padding: 0px 4px 0px 4px;
}

a {
    text-decoration: none;
    color: #595959;
    border-bottom: 1px solid #aaa;
}

@media screen and (prefers-color-scheme: dark) {
    a {
        color: #959595;
    }
}

a:link {
    text-shadow: 0px 0px 8px rgba(200, 165, 165, .7);
}

a:hover {
    text-shadow: 0px 0px 5px rgba(110, 110, 110, .7);
}

a:active {
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}

a:hover {
    color: #C779D0;
    border-color: #C779D0;
    animation: 1s gradient infinite normal linear;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    clip: rect(0, 0, 0, 0);
    -clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background: linear-gradient(to right, #FEAC5E 0%, #C779D0 35%, #4BC0C8 70%, #FEAC5E 100%);
    background-size: 100px 100px;
}

*::-moz-selection {
    color: #4BC0C8;
}

*::selection {
    color: #4BC0C8;
}

@keyframes gradient {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 100px;
    }
}

@media (min-resolution: 2dppx) {
    * {
        text-rendering: geometricPrecision;
    }
}

/* start signature */
#signature {
    stroke: #202020;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2779.38818359375;
    stroke-dashoffset: 2779.38818359375;
    -webkit-animation: sign 4s ease;
    animation: sign 4s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media (prefers-color-scheme: dark) {
    #signature {
        stroke: #e0e0e0;
    }
}

@-webkit-keyframes sign {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes sign {
    to {
        stroke-dashoffset: 0;
    }
}

#head-signature {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* end signature */

h4 {
    display: inline;
}

[role="doc-subtitle"] {
    display: inline;
}