@font-face {
    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-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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 596px;
    margin: 1rem auto;
    border: 3px solid #000;
    background-color: #fff;
    padding: 10px 12px;
}

header {
    padding: 0;
}

header p {
    font-style: italic;
    color: #58595c;
    padding-top: 7px;
}

.color {
    color: #58595c !important
}

article {
    padding: 10px 0;
    margin: 10px 0;
    border-top: 1px solid #e5e7ee;
    border-bottom: 1px solid #e5e7ee;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    gap: 3px;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 25px;
    line-height: 1;
    margin: 0;
    color: #31486e;
}

h1 span {
    display: block;
    font-size: 19px;
    padding-bottom: 7px;
}

h2 {
    font-size: 16px;
    line-height: 24px;
    color: #31486e;
    margin-top: 10px;
}

ul {
    list-style: none;
    margin-left: 23px;
}

ul li {
    padding-left: 23px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 21px;
    text-indent: -23px;
    margin-top: 1px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:596px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media only screen and (max-width:480px) {
    ul {
        margin-left: 0
    }

    .logo {
        flex-direction: column;
        align-items: center;
        gap: 10px
    }

    .logo p {
        text-align: center;
    }

    :is(h1, h1+p) {
        text-align: center;
    }
}