:root {
    --blue1: #1d85e0;
    --blue2: #0050ac;
    --blue3: #002b67;
    cursor: grab;
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: orangekid;
    src: url(https://files.catbox.moe/m38dby.TTF);
}

@font-face {
    font-family: petiote;
    src: url(https://files.catbox.moe/l007q9.ttf);
}

@font-face {
    font-family: typewriter;
    src: url(https://files.catbox.moe/o9biuc.ttf);
}

::selection {
    background: var(--blue3);
}

@keyframes fadeEffectIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

a {
    color: var(--blue2);
    text-decoration: none;
}

a:hover {
    color: var(--blue1);
    text-decoration: underline;
    cursor: help;
}

.highlight {
    background: var(--blue2);
}

::-webkit-scrollbar {
    width: 14px;
    background: #000;
}

::-webkit-scrollbar-track {
    background: #000;
    border: 1px dotted var(--blue2);
}

::-webkit-scrollbar-thumb {
    background: var(--blue3);
}

/* SCANLINES - courtesy of loleah's css */
#scanlines {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 300;
    opacity: 0.18;
}

#scanlines:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .4) 50%);
    background-size: 100% 4px;
    will-change: background, background-size; animation: scanlines 0.2s linear infinite;
}

@keyframes scanlines {
    from {
        background: linear-gradient(to bottom, transparent 10%, rgba(0, 0, 0, .4) 50%); background-size: 100% 4px;
    }
    to {
        background: linear-gradient(to bottom, rgba(0, 0, 0, .4) 50%, transparent 50%);
        background-size: 100% 4px;
    }
}
/* END OF SCANLINES*/

body {
    margin: 0;
    animation: fadeEffectIn 1s;
    font-family: orangekid;
    letter-spacing: 1px;
    background: #000;
    color: #fff;
}

b {
    font-size: large;
    font-family: petiote;
    margin-left: 2px;
}

h1 {
    font-size: larger;
}

hr {
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: none;
    width: 95%;
}

.imgnop {
    pointer-events: none;
}