@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #2e3192;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 588px;
    margin: 16px auto;
    border: 2px solid #2e3192;
    padding: 12px 16px 6px;
    background: #fff200;
}

p {
    margin: 0 0 4px;
    text-align: justify;
    hyphens: auto;
}

span {
    white-space: nowrap;
}

:is(.center, h1) {
    text-align: center;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 2px;
}

h2 {
    font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #2e3192;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 12px;
    margin: 4px 0;
}

li:before {
    content: '\2022';
    float: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    text-indent: -12px;
}

@media all and (max-width: 586px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-align: left;
        text-wrap: pretty;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }

    br {
        display: none;
    }
}