@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-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-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background: #fff url(../images/background.jpg) no-repeat;
    background-size: cover;
    padding: 46px;
}

.container {
    background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    padding: 50px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: -4rem 0 1rem;
    font-size: 29px;
    line-height: 39px;
    color: #40b4e8;
}

h1 span {
    display: block;
    color: #000;
}

h2 {
    font-size: 16px;
    margin: 1rem 0 7px;
    line-height: 20px;
    color: #40b4e8;
}

h3 {
    font-size: 15px;
    margin: 1rem 0;
    line-height: 1.125rem;
}

p {
    margin: 0 0 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #40b4e8;
    font-weight: bold;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    margin-left: 5px;
}

ul li {
    padding-left: 1.125rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 22px;
    text-indent: -1.125rem;
}

.container {
    padding: 18px;
}

hr {
    display: block;
    border: none;
    background: #40b4e8;
    height: 4px;
    width: 250px;
    margin: 1.5rem 0;
}

@media all and (max-width:749px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        padding: 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        margin-top: 0;
    }

    h1 br {
        display: none;
    }
}