@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/hind-v16-latin-regular.eot');
    src: url('../fonts/hind-v16-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v16-latin-regular.woff2') format('woff2'), url('../fonts/hind-v16-latin-regular.woff') format('woff'), url('../fonts/hind-v16-latin-regular.ttf') format('truetype'), url('../fonts/hind-v16-latin-regular.svg#Hind') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/hind-v16-latin-700.eot');
    src: url('../fonts/hind-v16-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v16-latin-700.woff2') format('woff2'), url('../fonts/hind-v16-latin-700.woff') format('woff'), url('../fonts/hind-v16-latin-700.ttf') format('truetype'), url('../fonts/hind-v16-latin-700.svg#Hind') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #37413a;
    font-family: 'Hind', Arial, sans-serif;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
}

#wrapper {
    max-width: 631px;
    margin: 1rem auto;
    border: 6px solid #de0033;
    padding: 15px;
    background-color: #fff;
}

header {
    overflow: hidden;
}

article {
    padding: 10px 0 0;
}

footer {
    border-top: 2px dotted #e3053c;
    margin: 0 -3px;
    padding: 10px 3px 0;
}

footer p:last-of-type {
    font-weight: 700;
    margin-top: 14px;
}

header img {
    float: right;
    margin: 0 0 10px 18px;
}

p {
    text-align: justify;
    hyphens: auto;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

h1 {
    margin: 5px 0 16px;
    font-size: 32px;
    line-height: 1.1;
    color: #ed1846;
}

h1 span {
    font-size: 16px;
    display: block;
    color: #37413a;
    font-weight: 400;
}

h2 {
    font-size: 18px;
    text-decoration: underline;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #37413a;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 10px;
}

li:before {
    content: '\2022';
    color: #37413a;
    float: left;
    font-size: 13px;
    text-indent: -10px;
}

img {
    max-width: 100%;
}

p span {
    white-space: nowrap;
}

@media all and (max-width:630px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    header img {
        margin-left: 16px;
    }

    p {
        text-align: left;
    }

    article br {
        display: none;
    }

}

@media all and (max-width:580px) {
    header {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    header img {
        float: none;
        margin-left: 0;
    }

    h1 {
        font-size: 28px;
    }

}