:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    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-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');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
}

#wrapper {
    max-width: 455px;
    margin: 16px auto;
    border: 2px solid #47bee5;
    padding: 10px 10px 6px;
    background: #fff url('../images/background.jpg') no-repeat 0 0;
}

header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 16px;
}

footer {
    margin: 0 -10px;
}

p {
    margin: 0 0 8px;
    text-align: justify;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 19px;
    line-height: 23px;
}

h2 {
    font-size: 13px;
    line-height: 18px;
}

h3 {
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
}

h4 {
    margin: 0 0 10px;
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 8px;
    list-style: none;
}

ul li {
    padding-left: 13px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 8px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 454px) {
    #wrapper {
        margin: 0;
        padding: 10px 16px 6px;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    p {
        text-align: left;
    }

    footer {
        margin: 0 -16px;
    }
}