html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Arvo', Georgia, serif;
    color: #2595C4;
    font-weight: 400;
    font-size: 13px;
    background-color: #F2F1E6;
    margin: 0;
}

section {
    text-align: center;
    width: 600px;
    min-height: 100%;
    margin: 0 auto 125px auto;
    top: 105px;
    position: relative;
}

header {
    text-align: center;
    margin: 25px auto;
    top: 105px;
    position: relative;
}

hr {
    color: #D4D2C7;
    border-style: solid;
    margin-bottom: 30px;
    margin-top: 30px;
}

footer {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
    text-align: center;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    height: 100px;
    margin: 0 auto;
    background-color: white;
    z-index: 500;
}

.logo {
    margin: auto;
}

.logo img {
    display: inline-block;
    width: 275px;
    margin: 18px 25px;
    float: left;
}

.about-tab {
    height: 30px;
    width: 60px;
    background-color: #2595C4;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 13px;
    font-family: 'Arvo', Georgia, serif;
    padding: 47px 20px 0px 20px;
    margin-right: 25px;
    float: right;
    z-index: 450;
    position: fixed;
    right: 0;
    top: 70px;
}

.about-tab:hover,
.about-tab:active {
    background-color: #C64331;
}

a {
    color: white;
    font-size: 13px;
    text-decoration: none;
}


/* Text */
h1 {
    font-weight: 400;
    font-size: 24px;
    color: #C64331;
}

h2.tagline {
    color: #2595C4;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 65px;
    letter-spacing: 1px;
    float: right;
    margin-right: 20px;
    position: fixed;
    right: 0;
}

h3 {
    color: #2595C4;
    font-weight: 400;
    font-size: 40px;
    margin: 20px 0px;

}


/* Images */
.shirt {
    position: relative;
}


/* Poster Area */
.poster {
    background-color: white;
    padding: 25px;
    border: 1px solid #D4D2C7;
}

.poster > p {
    text-align: left;
    line-height: 19px;
}


/* Button */
button {
    height: 40px;
    background-color: #2595C4;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 13px;
    font-family: 'Arvo', Georgia, serif;
    padding: 0 10px;
    margin-top: 10px;
}

button:hover,
button:active {
    background-color: #C64331;

}

button:focus {
    outline: none;
}


/* Highlighted Text */
.highlight {
    color: white;
    padding: 3px;
    background-color: #C64331;
}




