@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #006bb7;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.125;
    font-weight: 400;
}

#wrapper {
    max-width: 660px;
    margin: 16px auto;
    border: 3px solid #f15a50;
    padding: 10px 10px 3px 16px;
    background-color: #fff;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: -15% 0 0;
    padding-bottom: 7px;
}

:is(p, h1) {
    margin: 0 0 8px;
    text-align: center;
}

:is(strong, h1) {
    font-weight: 700;
}

h1 {
    font-size: 18px;
    line-height: 1.3;
    color: #f15a50;
}

h1 span {
    position: relative;
    padding-left: 18px;
}

h1 span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f15a50;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 10px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #006bb7;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media all and (max-width: 659px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    footer {
        margin: 16px 0 0;
        justify-content: space-around;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    p span {
        white-space: nowrap;
    }

    .none {
        display: none;
    }

    :is(a:link, a:visited, a:hover, a:active) {
        white-space: normal !important;
    }
}