@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.125em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 502px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 3px #F26434;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1, h3, p {
    text-align: center;
}
h1 {
    margin: 0 0 0.8rem;
    font-size: 1.25em;
    line-height: 1.3;
}
h1 span {
    font-size: 0.75em;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
    margin-bottom: 0;
}
h3 {
    font-size: 1.8em;
    line-height: 1;
    margin-bottom: 0.8rem;
}
h3 span {
    font-size: 0.75em;
}   
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 3rem;
    font-size: 1.0625rem;
    line-height: 1.3;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.5em;
    position: relative;
    float: left;
    margin-top: -7px;
    margin-left: -2rem;
}
h2, .color, h1 {
    color: #F26434;
}
header {
    padding: 0.8rem 0.8rem 1.5rem;
}
article {
    padding: 0 2rem;
}
footer {
    padding: 0 1rem;
}
@media only screen and (max-width:501px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    i br {
        display: none;
    }
    article {
        padding: 0 1rem;
    }
    li {
        padding-left: 0.8rem;
        margin-right: 0rem;
    }
    ul li:before {
        margin-left: -1rem;
    }
}