﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 470px;
    margin: 16px auto;
    border: 2px solid #231f20;
    padding: 10px 16px;
    background-color: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    border-radius: 16px;
}

header {
    padding: 0 0 5px;
}

span {
    white-space: nowrap;
}

h1 {
    margin: 4px 0 8px 18px;
    font-size: 29px;
    line-height: 1.35;
    font-weight: 700;
}

h1:before {
    content: '\2022';
    color: #231f20;
    float: left;
    margin-top: 6px;
    text-indent: -18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

h1 small {
    display: block;
    font-size: 19px;
    font-weight: 400;
}

a {
    color: #231f20;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media all and (max-width: 469px) {
    #wrapper {
        padding: 16px;
        border: none;
        border-radius: 0;
        margin: 0 auto;
    }

    h1 {
        font-size: 23px;
    }

    h1:before {
        margin-top: 1px;
    }

    br {
        display: none;
    }
}