@font-face {
    font-display: swap;
    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-display: swap;
    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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
}

#wrapper {
    max-width: 838px;
    margin: 16px auto;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 1px 1px 10px #ccc;
}

.logo {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

article {
    padding: 32px 48px 0;
}

.font-size {
    font-size: 19px;
    line-height: 23px;
    hyphens: none;
    text-align: center;
}

.info {
    margin: 0 0 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.info span {
    display: flex;
    gap: 4px;
    align-items: center;
}

.button {
    display: flex;
    justify-content: center;
    margin: 20px 0 50px;
}

.button a {
    background: #d2142d;
    color: #fff !important;
    transition: background-color .25s ease-in-out;
    display: inline-block;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    border-radius: 10px;
}

.button a:hover {
    background: #a81024;
}

.trackingpixel {
    width: 1px;
    height: 1px;
    aspect-ratio: auto 1 / 1;
}

h1 {
    margin: 16px 0;
    font-size: 26px;
    line-height: 32px;
    color: #d2142d;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 16px;
    line-height: 21px;
    margin: 0 0 6px;
    font-weight: 700;
}

p {
    margin: 0 0 16px;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 16px 16px;
    list-style: none;
}

ul li ul {
    margin-bottom: 0
}

ul li {
    padding-left: 16px;
}

ul li:before {
    content: "\2022";
    color: #aaafb4;
    float: left;
    font-size: 17px;
    text-indent: -16px;
    margin-top: -1px;
}

strong {
    font-weight: 700;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

:is(p span, h1 span) {
    white-space: nowrap;
}

@media (max-width:836px) {
    #wrapper {
        border: none;
        box-shadow: none;
        margin: 0;
    }

    article {
        padding: 16px 16px 0;
    }

    .font-size {
        font-size: 17px;
        line-height: 21px;
    }

    .info {
        gap: 16px;
    }

    :is(h1, ul, p, .font-size) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        font-size: 22px;
        line-height: 1.5;
    }

    p {
        text-align: left;
    }
}

@media (max-width:480px) {
    ul {
        margin-left: 0;
    }
}