@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Calibri, sans-serif;
    font-size: 1em;
    line-height: 1.2;
}
#wrapper {
    position: relative;
    max-width: 580px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #EA2F2F;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.4rem;
}
h1 {
    margin: -0.4rem 0 0;
    font-size: 1.88em;
    line-height: 1.15;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    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.4rem;
    list-style: none;
}
li {
    padding-left: 0.7rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: 1px;
    margin-left: -0.7rem;
}
header {
    padding: 0.5rem 0.5rem 0;
    text-align: center;
}

header p {
    font-size: 1.15em;
    line-height: 1.2;
}

header a img {
    position: absolute;
    top: 12px;
    right: 13px;
}

article {
    padding: 0 0.5rem;
}
footer {
    padding: 0.3rem 0.5rem;
    background: #EA2F2F;
    color: #fff;
}

footer a {
    color: #fff;
}

@media only screen and (max-width:579px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    
    li br {
        display: none;
    }

    header a img {
        position: static;
        margin-bottom: 0.5rem;
    }
}