@font-face {
    font-family: TerminusTTF;
    src: url("TTF/TerminusTTF.ttf");
}
@font-face {
    font-family: Monocraft;
    src: url("TTF/Monocraft.ttf");
}

@keyframes pastel_rainbow_background {
    0% {
        background-color: hsl(0, 100%, 76.7%);
    } 10% {
        background-color: hsl(36, 100%, 76.7%);
    } 20% {
        background-color: hsl(72, 100%, 76.7%);
    } 30% {
        background-color: hsl(108, 100%, 76.7%);
    } 40% {
        background-color: hsl(144, 100%, 76.7%);
    } 50% {
        background-color: hsl(180, 100%, 76.7%);
    } 60% {
        background-color: hsl(216, 100%, 76.7%);
    } 70% {
        background-color: hsl(252, 100%, 76.7%);
    } 80% {
        background-color: hsl(288, 100%, 76.7%);
    } 90% {
        background-color: hsl(324, 100%, 76.7%);
    } 100% {
        background-color: hsl(360, 100%, 76.7%);
    }
}

html {
    min-height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font: x-large TerminusTTF;
    color: #000;
    background-color: #b8f;
    min-height: 100vh;
}

nav {
    width: 100%;
    min-width: max-content;
    background-color: #000;
    border-bottom: 2px solid #fff;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 8;
}
nav > span {
    margin: 0 6pt;
}

article {
    margin: 32px;
}

a {
    font-family: Monocraft;
    font-size: 75%;
    letter-spacing: 1px;
    color: #fff;
    filter: drop-shadow(0 0 2px #000);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    filter: drop-shadow(0 0 2px #fff);
}

h1 {
    margin: 0;
    font-size: 28pt;
}
h1 a {
    font-size: 45%;
    letter-spacing: 0;
    float: right;
    background: #0008;
}
h2 {
    margin: 0;
    font-size: 24pt;
}
h3 {
    margin: 0;
    font-size: 20pt;
}

q {
    font-style: italic;
}
q > em {
    font-weight: bold;
}

.hue_rotate_background {
    backdrop-filter: hue-rotate(180deg) contrast(75%);
}
/* only useful if you need to center precisely one thing. */
/* so like on the 404 page. */
/* also put this as the first element on the page, */
/* because otherwise some stuff will become uninteractable. */
.simple_vertical_center_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

/* just making sure screenshots can be sent on kanji's server lul */
.fuck::before {
    content: "[beep]";
}
.fuck:hover::before {
    content: "fuck";
}
