html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Lucida Grande", Tahoma, Arial, Sans-serif, sans;
    color: #3e3f3e;
    text-align: center;
    background-color: #AAA;
}

.clear {
    margin: 0;
    padding: 0;
    clear: both;
}

#main {
    min-width: 480px;
    max-width: 640px;
    margin: 0 auto -10px;
    background-color: #FFF;
    -moz-box-shadow: 0 0 10px rgba(128, 128, 128, .5);
    -webkit-box-shadow: 0 0 10px rgba(128, 128, 128, .5);
    box-shadow: 0 0 10px rgba(128, 128, 128, .5);
}

header .main-image {
    width: 100%;
}

#content {
    text-align: left;
}

#content section {
    padding: 1em 1.5em;
    clear: both;
    overflow: hidden;
}

#content section:nth-of-type(even) {
    background: #EEE;
}

#content section h2 {
    margin-top: .25em;
}

#content section.comments {
    background: #FFF;
    border-top: 1px solid #EEE;
}

h1 {
    text-align: center;
    font-size: 2.4em;
    margin-top: 7px;
}

h1 span {
    display: block;
    font-size: .8em;
}

p {
    font-size: .9em;
    line-height: 1.4em;
}

.img-wrap .caption {
    font-size: 10px;
}

@media screen and (min-width: 640px) {
    .align-left {
        float: left;
        margin: 0 15px .75em 0;
    }

    .align-right {
        float: right;
        margin: 0 0 .75em 15px;
    }
}

@media screen and (max-width: 639px) {
    #content section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    h2, h3, .button-wrapper, .img-wrap {
        text-align: center;
    }
    
    #content img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
}

.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.button {
    background: #e23d3d;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    -webkit-border-radius: 5px;
    -moz-border-radisu: 5px;
    border-radius: 5px;
    padding: 1em 1.5em;
    display: inline-block;
}

.button:hover {
    background: #ed6060;
}

footer {
    font-size: 12px;
    padding: 1em;
    background: #EEE;
}