body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body>section.wrapper {
    flex: 1;
}

section h1 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-textPrimary);
    text-align: left;
    margin-bottom: 16px;
    max-width: 800px;

    @media only screen and (min-width: 768px) {
        font-size: 28px;
    }

    @media only screen and (min-width: 1400px) {
        font-size: 32px;
    }
}

section h2 {
    text-transform: uppercase;
    color: var(--color-textSecondary);
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 30px;
}

section h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

section ul {
    list-style: disc;
    line-height: 1.5;
}

ul+p,
ol+p {
    margin-top: 10px;
}

section ul li,
section ol li {
    margin-left: 30px;
}

section a {
    color: var(--color-textHighlightDark);
}

section a:hover {
    text-decoration: underline;
    color: var(--color-textHighlightDark);
}

section p {
    margin-bottom: 10px;
}

section ul+p strong {
    padding-top: 20px;
    display: inline-block;
}

b {
    font-weight: 600;
}