﻿@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.eot');
    src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v32-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v32-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v32-latin-700.woff') format('woff'),
        url('../fonts/roboto-v32-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 19px;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: none;
    overflow: hidden;
    padding: 0 18px;
    background: #fff url(../images/background.jpg) no-repeat;
    height: 400px;
}

header {
    margin: 0 0 3px;
    display: flex;
    justify-content: center;
}



:is(strong, h1) {
    font-weight: 700;
}

h1 {
    margin: -1px 0 10px;
    font-size: 24px;
    line-height: 24px;
}


p {
    margin: 0 0 7px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

ul {
    margin: 0 0 10px 11px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

ul li:before {
    content: "\2012";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-indent: -12px;
    margin: -2px 0 0;
}

img {
    max-width: 100%;
}

@media all and (max-width:499px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        background: #FFF;
        height: auto;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(footer br) {
        display: none;
    }
}