section.content
{
    padding-bottom: 2rem;
    max-width: 50%;
}

section.content pre
{
    line-height: 1.5;
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

section.content *
{
    font-size: calc(var(--smallFontSize) + 0.3rem);
}

section.content > h1
{
    font-size: var(--middleFontSize);
}

section.content > p.bold
{
    font-family: var(--displayMedium);
    font-size: calc(var(--smallFontSize) + 0.6rem);
    padding: 0.5rem 0;
    padding-top: 2rem;
}

section.content > ul
{
    list-style: none;
    padding: 1rem 0;
}

section.content > ul > li
{
    line-height: 1.5;
    background-image: url(../../svg/check-line.svg);
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: 0 5px;
    padding-left: 28px;
}


@media only screen and (max-width: 500px)
{
    section.content
    {
        max-width: 100%;
    }
    
    section.content *
    {
        font-size: var(--smallFontSize);
    }
}
