﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper {
    position: relative;
    max-width: 485px;
    margin: 12px auto;
    border: 2px solid #000;
    padding: 16px 16px 6px;
    overflow: hidden;
    border-radius: 20px;
    font-size: 16px;
    line-height: 21px;
    color: #231f20;
    font-family: "Roboto Condensed", Arial, sans-serif;
    background-color: #fff;
}

header {
    margin-bottom: 8px;
}

p {
    margin-bottom: 6px;
}

h1 {
    padding: 0 0 3px 25px;
    font-size: 29px;
    line-height: 33px;
}

h1:before {
    content: "\2022";
    color: #231f20;
    float: left;
    font-size: 41px;
    text-indent: -25px;
}

h1 span {
    display: block;
    font-size: 19px;
    line-height: 23px;
}

h1+p {
    padding-left: 25px;
}

a {
    color: #231f20;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 485px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    br {
        display: none;
    }

    p span {
        white-space: nowrap;
    }
}