* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 1rem auto;
    border: 2px #231f20 solid;
    max-width: 430px;
    color: #231f20;
    position: relative;
    padding: 21px 20px 17px;
    background: #fff url('bg.jpg') left bottom no-repeat;
    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
    font-size: 16px;
    text-align: center;
    overflow: hidden;
}

p {
    padding-bottom: 8px;
}

h1 {
    margin: 0 0 9px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

h1 strong {
    display: block;
}

h2 {
    font-size: 13px;
    line-height: 18px;
}

a {
    color: #2A61AD;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

a u {
    color: #0072B4;
}

img {
    max-width: 100%;
}

header {
    margin: 0 0 12px;
}

footer {
    padding: 0 0 13px;
}

footer img {
    margin: 9px 0 0;
}

@media only screen and (max-width:429px) {
    #wrapper {
        border: none;
        background-size: 100%;
        padding: 16px;
    }
}