﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 750px;
    margin: 12px auto;
    border: 1px solid #000;
    padding: 2px 15px;
    background: #fff;
    overflow: hidden;
    color: #200e00;
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
}

footer {
    letter-spacing: 4px;
    text-align: center;
}

h1 {
    font-size: 44px;
    line-height: 44px;
    font-weight: 700;
    color: #f68b1e;
    font-style: italic;
}

h2 {
    font-size: 33px;
    line-height: 37px;
    margin: -22px 0 10px;
    text-align: right;
    font-weight: 700;
}

a {
    color: #200e00;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 749px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    h1 {
        text-align: center;
    }

    h2 {
        margin-top: 10px;
        text-align: center;
    }
}