@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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 480px;
    margin: 1rem auto;
    border: none;
    overflow: hidden;
    background: #fff url(../images/background.jpg) no-repeat;
    height: 600px;
}

header {
    margin: 61px 0 0;
    display: flex;
    justify-content: center;
}

article {
    padding: 0 84px;
}

footer {
    margin: 26px 0 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #FFF;
}

.font {
    text-align: center;
    font-size: 18px;
    padding: 10px 0;
}

:is(strong, h1, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: #FFF;
}

h2 {
    font-size: 29px;
    margin: 1rem 0;
    line-height: 43px;
    font-weight: 400;
    text-align: center;
}

h3 {
    font-size: 22px;
    margin: 1rem 0;
    line-height: 1.5;
    text-align: center;
    color: #00acc1;
    text-shadow: 3px 3px 0 #FFF, 3px -3px 0 #FFF, -3px 3px 0 #FFF, -3px -3px 0 #FFF, 3px 0px 0 #FFF, 0px 3px 0 #FFF, -3px 0px 0 #FFF, 0px -3px 0 #FFF;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 25px 0 30px;
    list-style: none;
}

ul li {
    padding-left: 1.85rem;
    background: url(../images/icon.png) no-repeat 0 0;
    margin: 0 0 5px;
}

@media all and (max-width:479px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        background: #FFF;
        height: auto;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    article {
        background: url(../images/background-mobile.jpg) no-repeat bottom left;
        padding: 1rem;
    }

    h1 {
        background: #00acc2;
        padding: 1rem;
        margin: 0 -1rem;
    }

    footer {
        background: #00acc2;
        padding: 1rem;
        margin: 0;
    }

    footer p {
        margin: 0;
    }

    br:not(footer br) {
        display: none;
    }
}