@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), 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');
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #363d42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #363d42 solid;
    max-width: 520px;
    position: relative;
    background: #FFF url(../images/background.jpg) no-repeat;
    overflow: hidden;
}

header {
    display: none;
}

article {
    padding: 8px 10px 0;
    width: 508px;
    margin: 6px 0;
}

article p {
    margin-bottom: 0.975rem;
    font-size: 18px;
    line-height: 22px;
}

article p:last-of-type {
    margin-bottom: 0;
}

footer {
    border-bottom: 25px solid #E94142;
    padding: 0.5rem 0.75rem 5px;
}

.button {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}

.button a {
    display: inline-block;
    padding: 10px 16px;
    background: #E94142;
    color: #fff !important;
    border: 1px solid transparent;
    transition: .3s;
    font-weight: 700;
}

.button a:hover {
    opacity: 0.8;
}

footer p {
    font-size: 18px;
}

.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

h1 {
    margin: 0 0 34px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
}

h1 small {
    display: block;
    font-size: 100%;
}

h2 {
    margin: 4px 0 10px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 26px;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 12px;
}

ul li:last-of-type {
    margin: 0;
}

ul li:before {
    content: "\2022";
    float: left;
    font-size: 36px;
    text-indent: -22px;
    line-height: 24px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #363d42;
    text-decoration: none;
    white-space: nowrap;
}

p {
    text-align: justify;
    hyphens: auto;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media only screen and (max-width:518px) {
    #wrapper {
        border: none;
        margin: 0;
        background: #FFF;
    }

    header {
        display: block;
    }

    article {
        padding: 1rem;
        margin: 0;
        width: 100%;
    }

    footer {
        padding: 0.25rem 1rem 1rem;
    }

    .logo {
        justify-content: center;
    }

    :is(p, ul li) {
        hyphens: auto;
        text-align: left;
    }

    footer p {
        padding-bottom: 6px;
    }

    span {
        white-space: nowrap;
    }
}