@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.5em Arial, "Segoe UI", Calibri, sans-serif;
    color: #fff;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 0 #231F20, 1px -1px 0 #231F20, -1px 1px 0 #231F20, -1px -1px 0 #231F20, 1px 0px 0 #231F20, 0px 1px 0 #231F20, -1px 0px 0 #231F20, 0px -1px 0 #231F20;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 445px;
    border: solid 1px #000;
    background: #fff;
}
h1 {
    margin: 0;
    font-size: 1.992em;
    line-height: 1;
    position: absolute;
    left: 1rem;
    top: 5.5rem;
}
h2, ul {
    color: #000;
    text-shadow: none;
    letter-spacing: 0;
    font-size: 1em;
    line-height: 1.3;
}
h1 small {
    font-size: 0.7em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    margin-left: -1rem;
    float: left;
    font-size: 1.25em;
}
header p {
    background: #005391;
    padding: 0.3rem 0.7rem;
    font-size: 1.250em;
    line-height: 1.3;
}
article {
    padding: 0 1.5rem 0.3rem;
    position: relative;
}
.banner {
    margin: 0 -1.5rem 0.5rem;
}
footer {
    padding: 0.4rem 1.5rem;
    background: #005495;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.list {
    margin-top: 1rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:444px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1{
    	position: static;
    	margin-bottom: 1rem;
    }
    article br{
    	display: none;
    }
    article {
        padding: 0 1rem 0.3rem;
    }
}