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: left;
    min-height: 100%;
    margin: 140px auto 0px auto;
}

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

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

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: 90;
}

.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: 85;
    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: 20px;
    margin: 20px 0px;
    line-height: 25px;
    position: relative;
    text-align: center;
}


.small {
    font-size: 11px;
    line-height: 15px;
}


/* Images */
.shirt {
    position: relative;
    display: inline-block;
    top: -170px;
    padding-left: 20px;
}

.item1 {
    display: inline;
    width: 300px;
}

.outputarea {
    display: inline;
    width: 300px;
    margin-left: 538px;
}

p#output {
    display: inline-block;
    position: relative;
    width: 195px;
    top: -475px;
    margin: 0;
    text-align: center;
    font-size: 12px;
}


/* Form Area */
.form-area {
    width: 800px;
    height: 600px;
}

form {
    width: 400px;
    padding: 25px;
    background-color: white;
    border: 1px solid #D4D2C7;
    display: inline-block;
}

input {
    border: 1px solid #D4D2C7;
    border-radius: 4px;
    height: 25px;
    width: 390px;
    margin: 5px 0;
    padding: 4px;
    font-size: 13px;
    font-family: 'Arvo', Georgia, serif;
    color: black;
    display: block;
}

input:focus {
    color: black;
}

.inputblack {
    color: black;
}

label {
    font-size: 15px;
    display: block;
}


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

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

}

#submit:focus {
    outline: none;
}


/* Validation Styles */
label.error {
    font-size: 12px;
    color: #C64331;
    margin-top: -15px;
}

input {
    margin-bottom: 17px;
}








