<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* { box-sizing: border-box; }
body {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-osx-font-smoothing: grayscale;
    /* background: #000; */
    overflow-x: hidden;
    /* background: url('/images/moo.png') repeat center center;
    background-size: 30px 10px; */
}
body, h1, h2, h3, h4, a, ul, ol, li, p, figure {
    font-family: 'ProggyCleanTT', monospace;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #1f1209;
}
h1, h3, h4, ul, ol, p, figure {
    margin-bottom: 1em;
}
p, ul, ol {
    line-height: 19px;
}
ol {
    margin: 0;
    padding: 0;
    padding-left: 23px;
}
section:last-child, ul:last-child, p:last-child {
    margin-bottom: 0 !important;
}

/* Globals */
.unicode { height: 1em; }
#unicode-intro {
    width: 25px;
    text-align: center;
}
h2 { padding: .3em; }
article, figure, #nav-inner section { padding: .5em; }
section, h2 { border-bottom: 3px double #a7a7a7; }
ul li { list-style-position: inside; }
img, video, iframe { width: 100%; }
audio { display: none; }
.clear { clear: both; height:auto; }
a, .meta-links span {
    text-decoration-color: #585858;
}
figure {
    display: inline;
    margin: 0;
    padding: 0;
}
#enter-button, .button {cursor: pointer;}
article img {cursor: zoom-in;}

/* Intro */
#slideshow {
    height: 100vh;
    color: rgb(255, 255, 255);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#enter-button {
    border: 3px double #000;
    padding: 8px;
    bottom: 0;
    text-decoration: none;
    margin: 1em;
    display: inline-flex;
    background: #fff;
    color: #000;
}
#enter-button:hover {
    color: #000;
    background: #f0e71d;
}

/* Main */
main {
    /* border: 2px double #000; */
    display: block;
    margin: .5em 1em 1em 1em;
    grid-template-columns: 2fr 1fr;
    column-gap: 1em;
    display: grid;
}
#main-col section {
    border: 3px double #a7a7a7;
    margin-bottom: 1em;
}
#home {
    padding: 1em;
    height: 100vh;
}
#frame {
    /* border: 10px solid; */
    display: block;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 3px double #a7a7a7;
    margin-bottom: 2em;
    /* border-width: 10px;
    -moz-border-image: url("../images/border.png") 10 10 10 10 repeat;
    -webkit-border-image: url("../images/border.png") 5 repeat;
    border-image: url("../images/border.png") 10 repeat; */
}
header {
    grid-template-columns: 1fr 218px;
    display: grid;
    /* border-bottom: 1px solid #000; */
}
header img {
    width: 199px;
}
#title {
    padding: 1em;
}
#logo {
    margin: 10px;
}
#nav-inner {
    border: 3px double #a7a7a7;
}
#nav-inner:last-child {
    border-bottom: 0;
}
article .meta-section img {
    background: yellow;
    width: 17px;
    display: inline;
    vertical-align: middle;
}
.imgfull {
    width: 100%;
}
#info {
    grid-template-columns: 1fr 1fr;
    display: grid;
}
.button {
    border: 3px double #a7a7a7;
    padding: 7px 10px;
    display: inline;
    text-decoration: none;
    margin-right: 5px;
}
#rewind {
    background: url('../images/rewind.svg') no-repeat;
    background-position: center;
    background-size: 50% 70%;
}

/* Image Viewer */
#image-viewer {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: none;
    cursor: zoom-out;
}
#image-viewer img {
    position: absolute;
    max-width: 40vw;
}
.meta-links span {
    text-decoration-line: underline;
    cursor: pointer;
}
.meta-section {
    margin-top: .5em;
    padding-top: .5em;
    border-top: 3px double #a7a7a7;
}

/* Marquee */
marquee {
    margin-bottom: 1em;
}

/* Mobile */
@media (max-width: 700px) {
    header {
        grid-template-columns: 1fr;
    }
    #logo {
        order: 1;
    }
    #title {
        order: 2;
    }
    #home {
        padding-bottom: 20em;
    }
    main {
        /* border: 2px double #000; */
        margin: .5em 1em 1em 1em;
        grid-template-columns: 1fr;
        column-gap: 1em;
        display: grid;
    }
    #frame {
        display: block;
        position: relative;
    }
    nav {
        margin-top: 2em;
    }
}</pre></body></html>