@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 594px;
    margin: 1rem auto;
    border: 2px solid #008fc8;
    background-color: #fff;
    padding: 17px;
}

footer {
    position: relative;
}

.logo {
    position: absolute;
    bottom: 14px;
    right: 0;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    text-align: justify;
}

h2 {
    font-size: 18px;
    line-height: 22px;
    margin-top: 15px;
}

h2+p {
    text-align: justify;
    margin-top: 0 !important;
}

:is(h1, h2) {
    color: #008fc8
}

ul {
    list-style: none
}

ul li {
    padding-left: 16px;
}

li:before {
    content: "\2212";
    color: #000;
    float: left;
    font-size: 23px;
    text-indent: -16px;
    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:594px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2+p) {
        text-align: left;
    }

    footer :is(h2, p) {
        text-align: center;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 16px
    }
}