:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: 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');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 600px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 20px 30px 40px;
    background: #fff url('../images/background.jpg') no-repeat left bottom;
    position: relative;
}

header {
    position: absolute;
    z-index: 3;
    right: 20px;
    top: 125px;
}

footer {
    position: absolute;
    z-index: 3;
    right: 16px;
    bottom: 82px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 39px;
    line-height: 42px;
    color: #eb2a32;
}

h2 {
    margin: 0 0 8px;
    padding-left: 6px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    border-left: 2px solid #eb2a32;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 40px;
    position: relative;
}

li:before {
    content: "";
    width: 4px;
    height: 2px;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 9px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #1464ae !important;
}

.content {
    margin: 20px 0 0 27px;
}

.margin {
    margin: 25px 0 0 67px;
}

@media all and (max-width: 599px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 16px;
    }

    :is(ul, p) {
        hyphens: auto;
    }
}

@media all and (max-width: 580px) {
    header {
        position: static;
        margin-bottom: 16px;
    }

    h1 br {
        display: none;
    }

    .content {
        margin-left: 15px;
    }

    ul li {
        padding-left: 16px;
    }

    .margin {
        margin-left: 30px;
    }

    footer {
        position: static;
        margin: 20px 0 0 65px;
    }
}