@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em "Montserrat", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 690px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: -0.75rem 0 0.5rem;
    padding: 0.5rem;
    font-size: 2.2em;
    line-height: 1.1;
    background: #B50928;
    color: #fff;
    text-align: center;
    position: relative;
}
h1+p {
    text-align: center;
    color: #B50928;
    font-size: 0.938em;
    line-height: 1.3;
    padding-bottom: 4rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #B50928;
    margin-bottom: 0.5rem;
}
h3 {
    font: 700 2.95em/1.1em "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    background: #BABABD;
    color: #B50928;
    width: fit-content;
    padding: 2rem 1rem;
}
ul {
    padding: 0 0 2rem 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.7rem;
    position: absolute;
    left: 0;
    top: -1px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 2rem 0 0;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    align-items: center;
}
article {
    padding: 0 4rem 10rem;
    background: #fff url('bg.jpg') no-repeat right bottom;
}
footer {
    padding: 0.75rem 2rem;
    background: #B50928;
}
footer p {
    color: #fff;
    padding: 0;
    font-size: 1.125em;
    line-height: 1.3;
}
@media only screen and (max-width:689px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    br:not(footer br) {
        display: none;
    }
    h1 {
        margin-top: 0;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }
    article {
        padding-inline: 2rem;
    }
}
@media only screen and (max-width:480px) {
    h1 {
        font-size: 1.7em;
    }
    h3 {
        font-size: 2.2em;
    }
    article, footer {
        padding-inline: 1rem;
    }
}