*,
::after,
::before {
    box-sizing: border-box
}

ol,
ul {
    padding: 0
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol,
p,
ul {
    margin: 0;
    padding: 0;
    font-weight: 400
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    font-smooth: always;
    text-rendering: optimizeLegibility;
    line-height: 1.4
}

ol,
ul {
    list-style: none
}

a {
    text-decoration-skip-ink: auto
}

img {
    width: 100%;
    height: auto;
    display: block
}

article>*+* {
    margin-top: 1em
}

button,
input,
select,
textarea {
    font: inherit
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }
}







@font-face {
    font-family: FiraCode;
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: local("Fira Code"), url('fonts/firacode-regular.woff') format('woff'), url('./assets/fonts/firacode-regular.ttf') format('truetype')
}

:root {
    --font-size-base: 18px;
    --font-size-small: 0.75rem;
    --font-size-large: 1.5rem;
    --font-family-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Arial, "Helvetica Neue", sans-serif;
    --font-family-monospace: "Roboto Mono", Menlo, monospace;
    --font-family-serif: "Times New Roman", Times, serif;
    --body-max-width: 950px;
    --break-point: 950px;
    --footer-height: 3rem;
    --main-padding: 2rem;
    --main-margin: 4rem
}

@media screen and (max-width:950px) {
    :root {
        --main-margin: 0rem;
        --main-padding: 1rem;
        --footer-height: 4em
    }
}

body {
    --bg-color: white;
    --text-color: black
}

body.dark-mode {
    --bg-color: rgb(15, 15, 15);
    --text-color: #dadada
}

html {
    font-size: var(--font-size-base)
}

body {
    max-width: var(--body-max-width);
    margin: auto;
    font-family: var(--font-family-monospace);
    font-weight: 400;
    line-height: 1.35;
    color: var(--text-color);
    background: var(--bg-color)
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: var(--footer-height);
    background-color: inherit
}

footer div {
    max-width: var(--body-max-width);
    margin: auto;
    padding: 1rem var(--main-padding)
}

.filters {
    display: none
}

@media screen and (max-width:950px) {
    footer div {
        width: 100%
    }

    .filters {
        display: none
    }

    #search {
        display: none
    }
}

input#search-input {
    margin-right: 1em;
    padding: .25em;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color)
}

input#search-input:focus,
textarea:focus {
    outline: 0
}

@media screen and (max-width:950px) {
    input#search-input {
        width: 100%;
        margin-bottom: 1em
    }
}

header {
    padding: var(--main-padding)
}

main {
    min-height: 100vh;
    padding: 0 var(--main-padding);
    margin-bottom: var(--footer-height)
}

.subpage main {
    padding: var(--main-padding)
}

#list.filtered li:not(.selected) {
    display: none
}

li:not(#now) h2 {
    cursor: pointer
}

#now {
    color: gray;
    display: block !important
}

#oo {
    min-width: 3rem
}

.title {
    padding: var(--main-padding) 0;
    font-size: var(--font-size-large);
    hyphens: auto
}

.info {
    display: none
}

.show {
    display: block
}

.hide {
    display: none
}

.body-text,
.caption,
.lead-text {
    max-width: 600px
}

.body-text,
.caption,
.info {
    margin: var(--main-padding) 0 2rem 0
}

.body-text {
    margin-top: 2rem
}

blockquote {
    font-style: italic;
    font-size: 16px
}

::selection,
mark {
    background: green
}

#current {
    margin-top: 2rem
}

.current-section {
    margin-bottom: 3rem
}

.embed-media,
audio,
img,
video {
    margin: var(--main-padding) 0
}

h1,
h2,
ul li {
    font-size: var(--font-size-large);
    font-weight: 700
}

h2 {
    padding-bottom: .5rem
}

a {
    text-underline-offset: 0.125em;
    text-decoration-thickness: 0.08em;
    text-decoration-skip-ink: auto
}

a:visited {
    color: #00f
}

a:focus,
a:hover,
h2 a:hover {
    text-decoration: underline;
    text-underline-offset: 0.125em;
    text-decoration-thickness: 0.08em;
    text-decoration-skip-ink: auto
}

h2 a,
ul li a {
    text-decoration: none
}

label input {
    display: none
}

#expand {
    min-width: 75px
}

#www-a {
    font-family: FiraCode, "Fira Code", monospace;
    text-decoration: none;
    font-size: 36vw;
    cursor: pointer;
    font-variant-ligatures: contextual;
    margin-left: -3rem
}

.www-audio {
    display: none
}

@media screen and (max-width:950px) {
    #www-a {
        font-size: 50vw;
        margin-left: -1rem
    }
}

button:hover,
label:hover {
    cursor: pointer
}

.active:not(#now > h2),
.back-home:hover,
.filter-active,
.list-entry:not(#now) h2:hover,
button:hover,
label:hover {
    opacity: 1;
    color: var(--highlight-color)
}

.collapsed {
    opacity: var(--opacity-collapsed)
}

img {
    cursor: zoom-in
}

img.landscape {
    max-width: 600px;
    height: auto
}

img.portrait {
    max-height: calc(100vh - var(--footer-height));
    width: auto
}

.no-margin {
    margin: 0
}

.gif {
    width: 100%;
    height: auto;
    cursor: pointer
}

.twisted-thumb {
    max-width: 300px;
    margin: auto
}

.twisted-thumb .caption {
    padding-left: 3rem;
    font-size: var(--font-size-small)
}

#www img,
.twisted-thumb img {
    cursor: auto
}

.full-size {
    cursor: zoom-out
}

.landscape.full-size {
    max-height: unset;
    max-width: unset;
    width: auto;
    height: 100vh
}

.portrait.full-size {
    max-height: unset;
    max-width: unset;
    width: 100vw;
    height: auto
}

@media screen and (max-width:950px) {
    img.portrait {
        width: 100%;
        height: auto
    }

    .portrait.full-size {
        max-height: unset;
        max-width: unset;
        width: auto;
        height: 100vh
    }
}

audio,
video {
    display: block
}

@media screen and (max-width:375px) {
    audio {
        width: 100%
    }
}

video {
    width: 100%;
    max-width: 600px;
    height: auto
}

.embed-media {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0
}

.sixteen-ten {
    padding-bottom: 62.5%
}

.embed-media iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute
}

#info {
    margin-bottom: 1rem
}

.info-subpage {
    margin-bottom: var(--main-padding)
}