<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: TimesN;
    src: url('../fonts/TIMES.TTF')
}

@keyframes bck {
    from {background-color: black;}
    to {background-color: #eeeeee;}
}

@keyframes height {
    from { color: transparent; }
    to {color: #eeeeee;}
}

*::selection {
    color: #eeeeee;
    background-color: black;
}

body {
    animation: bck 5s ease-in-out;
    background-color: #eeeeee;

    font-family: TimesN, serif;
    text-rendering: optimizeLegibility;

    filter: blur(1px);
}

em {
    background-color: black;
    color: #eeeeee;
}

.main {
    width: 640px;
    height: 400vh;

    margin: auto;
    text-align: justify;

    position: relative;
}

p {
    margin: 0;
}

div.invert {
    position: absolute;

    filter: invert(1);
    mix-blend-mode: difference;
    z-index: 1000;

    left: 0;
    right: 0;

    /* position: sticky; */

    background-color: black;
    width: 100vw;

    color: #eeeeee; 
    word-break: break-all;
}</pre></body></html>