@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1.3em/1.3em "Roboto", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 738px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #EE1D23;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: -1rem 0 0.5rem;
    font-size: 1.38em;
    line-height: 1.3;
}
h1, p span.color {
    color: #EE1D23;
}
h1 span {
    font-size: 1.5em;
    line-height: 1.3em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
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: 0.7rem;
}
ul li:before {
    content: "•";
    font-size: 1em;
    float: left;
    margin-left: -0.7rem;
}
header {
    padding: 1rem 1rem 2rem;
    position: relative;
    background: url('bg.jpg') no-repeat bottom left #EE1D23 ;
}
header figure {
    position: absolute;
    top: 2rem;
    right: 2rem;
}
header p {
    color: #FFF;
}
article {
    padding: 1rem 1rem 0;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
@media only screen and (max-width:737px) {
    body{
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    header{
        background: #EE1D23;
        padding: 1rem;
    }
    header figure, footer{
        position: static;
        display: flex;
        justify-content: center;
    }
    header br, h1 br{
        display: none;
    }
    p {
        text-align: left;
    }
}