* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-size: 16px;
    line-height: 21px;
    font-family: Verdana, Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 870px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

header {
    padding: 36px 60px;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 0 60px 1rem;
}

figure {
    margin: 0 -60px 40px;
}

.font p {
    font-size: 14px;
    line-height: 19px;
}

footer {
    padding: 20px 16px 50px;
}

footer p {
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
}

.button a {
    display: inline-block;
    border-radius: 2px;
    padding: 12px 36px;
    color: #fff !important;
    background: #FFCC00;
}

span {
    white-space: nowrap;
}

hr {
    border: none;
    border-bottom: 1px solid #C7C8C9;
    margin: 25px 0;
}

p {
    margin: 0 0 1rem;
}

h1 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.2;
}

h2 {
    font-size: 18px;
    line-height: 22px;
    margin: 34px 0 12px;
    font-weight: normal;
    color: #E30613;
    text-transform: uppercase;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 25px 10px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: '\2022';
    position: absolute;
    left: 0;
    font-size: 21px;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

img.trackingpixel {
    width: 0;
    height: 0;
    opacity: 0;
}

@media (max-width:869px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    header {
        padding: 30px 16px;
    }

    article {
        padding: 0 16px 16px;
    }

    figure {
        margin: 0 -16px 16px;
    }

    :is(h1, h2, p, li) {
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media (max-width:767px) {
    header {
        justify-content: center;
    }

    ul {
        margin-left: 0;
    }

    h1 {
        font-size: 25px;
        line-height: 1.3;
    }
}