@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 620px;
    margin: 1rem auto;
    border: solid 2px #E75323;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.392em;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 2rem;
}
h2, h3 {
    font-style: italic;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
ul li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "▪";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
footer {
    margin-left: 1rem;
}
@media only screen and (max-width: 619px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    article br {
        display: none;
    }
    h1, footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    ul {
        padding-bottom: 1rem;
    }
    h1, h3 {
        margin-bottom: 1rem;
    }
    ul li{
        padding-left: 1rem;
    }
}