@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #383838;
    font: 1em/1.3em Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 630px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #383838;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 1rem 0 8rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.392em;
    line-height: 1.1;
}
a {
    color: #383838;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    position: absolute;
    top: 0.7rem;
    left: 1rem;
}
@media only screen and (max-width: 629px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    header {
        position: static;
    }
}