@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: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.25em;
    line-height: 1.2;
}
#wrapper {
    position: relative;
    max-width: 675px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #EE1D23 url('./bg.png') no-repeat bottom right;
    overflow: hidden;
}
p span, ul, h2 {
    color: #000;
}
h1 {
    margin: 0 0 1.25rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: normal;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 7rem 1.5rem 0;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
.pr {
    padding-right: 6rem;
}
.pr2 {
    padding-right: 2rem;
}
.font {
    font-size: 0.96em;
    line-height: 1.2em;
    letter-spacing: -0.2px;
}
header div {
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    line-height: 1.3em;
}
article {
    padding: 1rem 2.5rem 1.5rem;
}
footer {
    position: absolute;
    right: 0.75rem;
    bottom: 11.75rem;
}
@media only screen and (max-width: 674px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        background: #EE1D23;
    }
    br {
        display: none;
    }
    header div, article {
        padding: 1rem;
    }
    .pr, .pr2, ul {
        padding-right: 0;
    }
    .font {
        letter-spacing: 0;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0 1rem 1rem;
    }
}
@media only screen and (max-width: 500px) {
    header div {
        display: block;
    }
    header p {
        padding-bottom: 1rem;
        text-align: center;
    }
}
