@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 0.75em/1.25em 'Jost', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #231F20;
    background: url('bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 1rem 1rem 0.25rem 1rem;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2em;
    line-height: 1.2;
    color: #E41D2F;
    font-weight: normal;
    position: relative;
    text-transform: uppercase;
}
h1 small {
    text-transform: none;
    font-size: 1rem;
    line-height: 1.2;
}
h1 small:last-of-type {display: block;margin-top: 0.25rem;}
h1 span {
    font-size: 0.8em;
    display: block;
    background: #E41D2F;
    padding: 0.2rem;
    color: #FFF;
    position: absolute;
    bottom: 3.5rem;
    right: 2rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 400;
    text-decoration: underline;
}
h3 {
    font-size: 1.05em;
    line-height: 1.3;
}
h2, h3 {
    text-transform: uppercase;
}
a {
    color: #231F20;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.7rem;
    list-style: none;
}
li {
    padding-left: 1rem;
    line-height: 1.3;
}
ul li:before {
    content: "+";
    font-size: 1.3em;
    float: left;
    margin-top: -5px;
    margin-left: -1rem;
    color: #E41D2F;
}
header {
    position: relative;
    padding: 0 1rem;
}
header figure {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}
header section {
    width: 352px;
}
header section p {
    text-align: justify;
}
article {
    padding: 2.75rem 0 1rem 16rem;
}
article p a {
    display: inline-block;
    color: #FFF;
    background: #E41D2F;
    padding: 0.2rem;
}
footer {
    padding: 0.75rem 0 0 16rem;
}
footer p span {
    font-size: 1.25em;
}
footer :is(p, a) {
    color: #FFF;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
        background: #CACFD3;
    }
    h1 {
        line-height: 1.3;
    }
    h1 small:last-of-type {
        margin: 0;
        line-height: 1.3;
    }
    h1 span {
        width: fit-content;
        position: static;
    }
    header figure {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
    header section {
        width: 100%;
    }
    article, footer {
        padding: 1rem;
    }
    article .box {
        background: #EAECEC;
        padding: 1rem;
    }
    footer {
        background: #4A4A4A;
    }
    footer p {
        text-align: center !important;
        padding: 0;
    }
    header p br, ul li br {
        display: none;
    }
    p {
        text-align: left !important;
    }
}