/* inconsolata-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Inconsolata';
    font-style: normal;
    font-weight: 400;
    src: url('../files/fonts/inconsolata-v31-latin-regular.woff2') format('woff2');
}

html, body {
    background-color: #070707;
    font-family: 'Inconsolata', monospace;
    font-size: 17px;
    color: white;
    background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' result='noise' /%3E%3C/filter%3E%3Crect width='400' height='400' fill='%23070707' /%3E%3Crect width='400' height='400' fill='%23CABF5F' opacity='0.03' filter='url(%23noise)' /%3E%3C/svg%3E");
    background-attachment: fixed;
}

pre {
    font-family: 'Inconsolata', monospace;
    color: #CABF5F;
    font-variant-ligatures: none;
    font-kerning: none;
}

a {
    text-decoration: none;
    color: white;
    cursor: cell;
}

a:hover {
    background-color: #CABF5F;
}

.center-top {
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 95px;
}

.left-side {
    padding-top: 45px;
    padding-right: 80px;
}

.buttons {
    margin-top: 15px;
    /* margin-left: 0px; */
    font-size: 18px;
    cursor: cell;
}

.yellow-text {
    color: #E9E2A3;
}

.dyellow-text {
    color: #CABF5F;
}

.container {
    width: 67%;
    margin: 0 auto;
}

::selection {
    /* background-color: #007e43; */
    background-color: #cfcdbe;
}

@keyframes lux-flicker-kf {
    0%   { filter: none; opacity: 1; }
    20%  { filter: invert(1) hue-rotate(40deg); opacity: 0.85; }
    35%  { filter: none; opacity: 1; }
    55%  { filter: brightness(2.2) contrast(1.3); opacity: 0.6; }
    75%  { filter: invert(1); opacity: 1; }
    100% { filter: brightness(0); opacity: 0; }
}

.lux-flicker {
    animation: lux-flicker-kf 900ms steps(10, end) forwards;
}

.con-title {
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #CABF5F;
    color: #070707;
    height: 25px;
}

.con-box {
    border: 1px solid #CABF5F;
    margin-bottom: 30px;
    position: relative;
    padding: 10px;
    padding-top: 18px;
    padding-right: 110px;
}

#top-con {
    min-height: 72px;
    padding-bottom: 20px;
}

#top-inner-con {
    margin-bottom: 30px;
}

.innocence {
    border: 1px solid #CABF5F;
}

.inner-con-box {
    margin-bottom: 10px;
}

.con-title b {
    padding-left: 10px;
}

.titlendate {
    padding-right: 10px;
}

.fingerprint {
    background-color: #1B1B1B;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px 5px 5px 5px; 
}

.site-motto {
    margin-top: 10px;
    margin-bottom: 24px;
    text-align: center;
    font-style: italic;
    color: #A69F7F;
}

.site-motto-top {
    margin: 0;
    font-size: 15px;
}

.site-motto-bottom {
    margin: 5px 0 0;
    font-size: 13px;
}

.invocatio {
    color: #A69F7F;
    font-size: 13px;
    letter-spacing: 0.15em;
    margin-top: 4px;
    user-select: none;
}

.colophon {
    text-align: center;
    color: #A69F7F;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    user-select: none;
}

@media (max-width: 768px) {
    html, body {
        font-size: 15px;
    }

    .center-top {
        flex-direction: column;
        margin-top: 20px;
        margin-bottom: 40px;
        padding: 0 12px;
        text-align: center;
    }

    .left-side {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .left-side img {
        max-width: 70%;
        height: auto;
    }

    .right-side {
        width: 100%;
        overflow-x: auto;
    }

    pre {
        font-size: 11px;
        line-height: 1.05;
        letter-spacing: 0;
        word-spacing: 0;
        white-space: pre;
        display: inline-block;
        min-width: max-content;
        margin: 0;
        overflow-x: visible;
        text-align: left;
        -moz-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    .invocatio {
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .buttons {
        font-size: 16px;
        line-height: 2;
        word-spacing: 2px;
    }

    .container {
        width: auto;
        margin: 0 12px;
    }

    .con-title {
        height: auto;
        min-height: 20px;
        flex-wrap: nowrap;
        align-items: center;
        font-size: 12px;
        padding: 1px 0;
        gap: 8px;
        line-height: 1.2;
    }

    .con-title b {
        padding-left: 6px;
        flex: 1 1 auto;
        min-width: 0;
        word-break: break-word;
    }

    .titlendate {
        padding-right: 6px;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .con-box {
        padding: 12px;
        padding-top: 14px;
        padding-right: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .con-box img {
        max-width: 100%;
        height: auto;
    }

    .fingerprint {
        font-size: 12px;
        word-break: break-all;
    }
}