@font-face {
    font-family: firacode;
    src: url("/static/fonts/firacode.woff2");
}

:root {
    font-family: 'firacode', monospace;
    font-style: normal;
    font-size: small;
    --medium: 1.125rem;
    --large: 1.35rem;
    --x-large: 1.6875rem;
    --xx-large: 2.25rem;
    --xxx-large: 3.375rem;
    background-color: #880808;
    color: ghostwhite;
}
h1, h2, h3, #h_page {
    font-style: normal;
    font-size: var(--xx-large);
}
#monthly {
    margin: 0 auto;
}
#monthly img {
    max-width: 480px;
    margin: 0 auto;
    border: .5rem ridge tomato;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: flex;
}
#monthly figcaption {
    margin: 0 auto;
    max-width: 480px;
}
#h_page {
    font-size: var(--xxx-large);
}
h2 {
    font-size: var(--x-large);
}
h3 {
    font-size: var(--large);
}
body {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}
@keyframes animate {
    0% {
        transform: translateY(0);
        opacity: 1;
        background-color: red;
    }
    33% {
        transform: translateY(-200px);
        opacity: .66;
        background-color: #880808;
    }
    100% {
        transform: translateY(-600px);
        opacity: 0;
        background-color: #880808;
    }
}
#circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -5;
}
#circles > div{
    position: absolute;
    display: block;
    border-radius: 50%;
    animation: animate 20s linear infinite;
    bottom: -200px;
    z-index: -6;
}
header {
    position: sticky;
    top: 0;
    padding: 5px 10px;
    background: linear-gradient(
        to bottom right in oklab,
        color-mix(in srgb, black, transparent 0%),
        color-mix(in srgb, silver, transparent 5%)
    );
    z-index: 1;
}
header>div {
    display: flex;
    flex-direction: column;
    width: min-content;
    white-space: nowrap;
    gap: .1em;
}
.topnav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-between;
    max-width: 100%;
}
#sectionboxx {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 480px) {
    #h_page {
        font-size: var(--x-large);
    }
    .topnav {
        justify-content: flex-start;
    }
    header>div {
        width: 100%;
    }
    #sectionboxx {
        grid-template-columns: 1fr;
    }
}
main {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 1rem;
}
#ascii {
    margin-top: 1em;
}
picture.textpic img {
    height: 14px;
}
span.rss_f {
    margin-right: 15px;
}
a:link {
    color: ghostwhite;
}
a:visited {
    color: dimgrey;
}
a:hover, a:active {
    color: silver;
}
li+li {
    margin-top: 10px;
}
footer {
    position: sticky;
    bottom: 0;
    padding: 0 4px;
    background: linear-gradient(
        to right in oklab,
        black,
        transparent
    );
}
.e_content picture>img,
.e_content .img_container
{
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 5px;
}
.e_content .img_container picture>img {
    max-height: 128px;
    object-fit: contain;
}
:has(> iframe) {
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
}
iframe {
    width: 100%;
    height: 100%;
}
a {
    overflow-wrap: break-word;
}
sup a {
    text-decoration: none;
    font-size: 0.8em;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}
.form fieldset {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form fieldset>div:nth-child(even) {
    background-color: rgba(50,50,50,.5);
}
.form .f {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.form .f > * {
    flex: 3;
}
.form .f > label{
    flex: 1;
}
.infobot {
    background: tomato;
    padding: 0 10px;
    margin-bottom: 24px;
    border-style: dashed;
}
#webdesign {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 16px;
}
#webdesign a {
    display: block;
    height: 31px;
    overflow: hidden;
}
#webdesign a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@keyframes spin {
  0% {
    opacity: 0;
    transform: translateZ(-800px) rotateX(70deg) rotateY(-180deg);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateZ(0) rotateX(0deg) rotateY(0deg);
  }
}
@keyframes disturbColor {
    from {
        color: brown;
        filter: blur(64px);
    }
    25% {
        color: brown;
        filter: blur(32px);
    }
    50% {
        color: silver;
        filter: blur(8px);
    }
    75% {
        color: ghostwhite;
        filter: blur(0);
    }
    to {
        color: ghostwhite;
        filter: blur(0);
    }
}
.gcont {
    margin: 0 auto;
    width: 75%;
    aspect-ratio: 97 / 52;
    container-type: inline-size;
    container-name: mycont;
    background-color: black;
    border: thick inset silver;
    border-radius: 12px;
    transform-style: preserve-3d;
    animation: disturbColor 2s ease-in-out forwards, spin .5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.gman {
    font-size: calc(( 100cqw - (2em) ) / 97);
    padding: 1em;
    text-align: justify;
    white-space: pre;
    box-sizing: border-box;
    max-width: fit-content;
    max-height: fit-content;
    background: transparent;
}
.overline {
    text-decoration: line-through;
}
