@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?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 1.1em/1.2em "Roboto Condensed", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    background: url('bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
    hyphens: auto;
}
p a.color {
    color: #EE1F26;
    font-style: italic;
}
p span.lp {
    word-spacing: 2px;
}
:is(h1, h2, h3, h4, strong) {
    font-weight: 700;
}
:is(h1, h2, h3, h4) {
    text-transform: uppercase;
}
:is(h1, h2) {
    color: #FFF;
}
h1 {
    margin: 1.3rem 0 1rem;
    font-size: 2.492em;
    line-height: 1;
    font-style: italic;
}
h1 span, h1 small {
    text-transform: none;
}
h1 small {
    display: block;
    font-size: 0.45em;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
h2:first-of-type {
    margin: 0.3rem 0rem 1.2rem;
}
h2:nth-of-type(2) {
    margin: 1rem 0rem 2rem;
}
h2:nth-of-type(3) {
    margin: 1.7rem 0rem 1rem;
}
h3 {
    font-size: 1.689em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 span {
    font-size: 1.69em;
}
h4 {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 0;
    color: #00B3EF;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
ul:last-of-type li {
    padding-bottom: 0.2rem;
}
article {
    padding: 1.5rem 5rem 0;
}
footer {
    padding: 0 5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0 1rem;
}
footer p:last-of-type a {
    font-size: 1.9em;
    line-height: 1.3em;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        background: #E5F6FD;
    }
    p {
        text-align: left;
    }
    article, footer {
        padding: 1rem 2rem 0;
    }
    :is(h1, h2) {
        background: #EE1F26;
        padding: 0.5rem 1rem;
    }
    h1 {
        font-size: 1.8em;
        text-align: center;
    }
    h2 {
        display: inline-block;
        margin:  1rem 0 !important;
    }
    h3, h3 span {
        font-size: 1.3em;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding: 1rem 1rem 0;
    }
}