@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #5e6162;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
p {
    padding-bottom: 1rem;
}
:is(h1,h2){
    color: #064678;
}
h1 {
    margin: 0 0 3.5rem;
    font-size: 1.692em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #064678;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.2rem 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
header {
    position: absolute;
    top: 20rem;
    right: 2rem;
}
footer p{
    text-align: center;
    margin-top: 1rem;
}
footer p a{
    display: inline-block;
    color: #FFF;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-transform: uppercase;
    background: #5E6162;
}
footer p a:hover{
    text-decoration: none;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    header{
        display: flex;
        justify-content: center ;
        position: static;
        margin-bottom: 1rem;
    }
    h1{
        margin-bottom: 1rem;
    }
    p {
        text-align: left;
    }
}