@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1.25em Calibri, sans-serif;
    line-height: 1.2;
}

#wrapper {
    position: relative;
    max-width: 435px;
    margin: 1rem auto;
    border: 4px solid #595959;
    background: #fff;
    overflow: hidden;
    padding: 0.5rem 0.5rem 0.25rem;
    text-align: center;
}

a {
    color: #000;
    text-decoration: none;
}

p {
    padding-bottom: 0.25rem;
}

h1 {
    margin: -0.5rem 0rem 0.25rem;
    font-size: 2.5em;
    line-height: 1;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1.425em;
    line-height: 1.4;
    margin-bottom: 0rem;
    font-weight: normal;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem;
}

article {
    padding: 0rem;
}

article p:last-of-type {
    color: #595959;
}

footer {
    padding: 0.35rem 0rem 0rem;
    color: #595959;
    font-size: 1.8em;
    line-height: 1;
}

footer a {
    font-size: 1.2em;
    line-height: 1.2;
    color: #595959;
}

@media only screen and (max-width: 435px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    br {
        display: none;
    }
    body{
        font-size: 1em;
    }
    footer{
        font-size: 1.45em;
    }
}