body {
    color: white;
    color: #eee;
    /* background-color: #111; */
    background-color: #000;
    display: flex;
    flex-direction: row-reverse;
    width: 50%;
    margin: 0 auto;
}

aside {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 2vh;
    height: fit-content;
    margin: 0 2vh 0 auto;
    font-family: sans-serif;
}

aside>dl {
    margin-top: 0;
}

aside>dl>dt {
    font-family: sans-serif;
    margin-top: 0.25rem;
}

aside>dl>dd {
    margin-left: 0;
}

aside>dl>dd>ul>li {
    margin-left: 0.5rem;
    list-style-type: none;
}

figure {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

figure>img {
    width: 50ch;
}

.marquee {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    color: #eee;
    font-family: monospace;
}

.marquee>ul {
    margin: 0 0 1rem;
    overflow: hidden;
    display: inline-flex;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    list-style-type: none;
    font-size: 125%;
}

marquee>ul>li {
    padding-left: 0.5rem;
}

.marquee>ul> :not(li:last-of-type)::after {
    content: '—';
}

main {
    max-width: 70ch;
    margin-top: 2vh;
    margin-left: 10%;
}

main ul>li {
    margin-left: 1rem;
    list-style-type: "– ";
}

h1 {
    margin: 0;
    font-size: 150%;
    font-family: monospace;
}

h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 125%;
    margin: 0 0 1rem 0;
}

h3 {
    font-size: 115%;
}

a:visited {
    color: grey
}

ul {
    padding-left: 0;
}

footer {
    margin-top: 2.5rem;
    padding-top: 0.5rem;
    font-size: 90%;
    border-top: 1px solid grey;
}

@supports (hyphens: auto) {
    p {
        hyphens: auto;
        text-align: justify;
    }
}

@keyframes marquee {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
