@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 602px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #EA7926;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-size: 1.82em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: normal;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    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;
}
header {
    position: relative;
}
header :is(p, h1) {
    color: #FFF;
    background: #EA7926;
    display: inline-block;
    padding: 0.5rem;
}
header h1 {
    position: absolute;
    top: 0;
    left: 0;
}
header p {
    position: absolute;
    bottom: -1.5rem;
    right: 0;
}
article {
    padding: 1rem 1rem 0;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    header :is(h1, p) {
        position: static !important;
        display: block;
        text-align: center;
        padding: 1rem !important
    }
    br {
        display: none;
    }
    header img {
        display: block;
    }
    article p:last-of-type br {
        display: block;
    }
    h1 {
        font-size: 1.5em;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    p {
        text-align: left;
    }
}