﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 474px;
    margin: 12px auto;
    border: 1px solid #000;
    padding: 2px;
    background: #fff;
    overflow: hidden;
    color: #200e00;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
}

header {
    position: absolute;
    z-index: 3;
    right: 2px;
    top: 2px;
}

footer {
    text-align: justify;
}

p {
    margin: 6px 0 0;
}

h2 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 24px;
    font-weight: 700;
}

a {
    color: #200e00;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.center {
    text-align: center;
}

@media all and (max-width: 473px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    header {
        position: static;
        margin-bottom: 10px;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }
}