.body_document{
    --h3-font-size: 2rem;
    --h3-font-weight: 800;
    --body-font-weight: 200;
    --strong-font-weight: 500;
}

main{
    padding-top: 64px;
    font-weight: var(--body-font-weight);
}

strong{
    font-weight: var(--strong-font-weight);
}


h1{
    font-family: var(--pretitle-font-family);
    font-size: var(--pretitle-font-size);
    font-weight: var(--pretitle-font-weight);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

h2{
    font-family: var(--title-font-family);
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

em{
    opacity: 0.5;
}

h3{
    font-family: var(--title-font-family);
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

h3 + p{
    margin-top: 1em;
}

.body_document main ul,
.body_document main ol{
    list-style: inside;
    margin: 1em 0;
}

.body_document main ul > li,
.body_document main ol > li {
    padding-left: 1em;
    list-style: inside;
}

.body_document main a{
    text-decoration: underline;
    font-weight: var(--strong-font-weight)
}