* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: inherit;
    text-decoration: none;
    color: inherit;
    list-style: none;
}

::selection {
    color: white;
    background-color: #6e6e6e;
}

body {
    background-color: #0f1417;
    color: #fff;
    font-size: 1.5rem;
    overflow-x: hidden;
    font-family: 'Bitter', serif;
    line-height: 1.277;
}

.header {
    margin: 8rem 0 10rem;
}

.site-title {
    display: block;
    margin-bottom: 1.5rem;

    font-family: "Workbench", sans-serif;
    font-size: 6rem;
    text-align: center;
    line-height: 1;
    border-bottom: none;
}

.site-links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.25rem;
    row-gap: 1.25rem;
    justify-content: center;
}

.site-links a {
    white-space: nowrap;
    padding-bottom: .25rem;
}

a {
    border-bottom: 2px white solid;
    padding-bottom: .125rem;
    transition: all 100ms;
}

a:hover {
    color: #FC6255;
    border-bottom-color: #FC6255;
    transition: none;
}

.content {
    max-width: 48rem;
    padding: 0 2rem;
    margin: auto;
    overflow: visible;
}

.content video {
    width: 200%;
    margin: 0 -50%;
    z-index: -10;
    mix-blend-mode: lighten;
}

.content video:not([controls]) {
    pointer-events: none;
}

.content p {
    margin-bottom: 2.166rem;
}

.content em {
    font-style: italic;
}

.content strong {
    font-weight: 700;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 750;
}

.content ol {
    padding-left: 3rem;
    margin-bottom: 2.166rem;
}

.content ol > li {
    list-style: outside lower-alpha;
    margin-bottom: 1rem;
}


@media (max-width: 1024px) {
    body {
        font-size: 1.25rem;
    }

    .site-title {
        font-size: 3rem;
    }

    .content {
        padding: 0 1rem;
    }
}
