body {
    background: var(--background);
    font-family: var(--font);
    margin: 0;
    overflow-x: hidden;
}

h1, h2 {
    margin-bottom: -4px;
}

ul {
    margin: 0;
    padding-left: 20px;
}

li {
    margin-bottom: -8px;
}

small {
    font-size: 10px;
}

#return {
    position: absolute;
    top: 8px;
    left: 8px;
}

#return a {
    color: var(--accent);
}

@media (max-width: 768px) {
    #return {
        display: none;
    }
}

#container {
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
    width: 100vw;
    text-align: center;
}

#title {
    font-family: var(--font-expanded);
    font-weight: 500;
    font-size: clamp(30px, 4vw, 50px);
    user-select: none;
    -webkit-user-select: none;
}

#subtitle {
    font-size: 12px;
    color: var(--deep-contrast-text);
    user-select: none;
    -webkit-user-select: none;
}

#content {
    margin-top: 16px;
    width: 100vw;
    display: flex;
    justify-content: center;
}

#text {
    width: 36vw;
    max-width: 1280px;
    white-space: pre-line;
    font-size: 16px;
    text-align: left;
}

@media (max-width: 1366px) {
    h1, h2, h3, h4, h5, h6 {
        text-align: center;
    }

    #container {
        width: calc(100vw - 32px);
        margin-left: 16px;
        margin-right: 16px;
    }

    #content {
        justify-content: unset;
    }

    #text {
        width: calc(100vw - 32px);
    }
}

#footer {
    margin-bottom: 8px;
    width: 100vw;
    text-align: center;
    font-size: 12px;
    color: var(--deep-contrast-text);
    user-select: none;
    -webkit-user-select: none;
}