/* CSS Document used for the week 6 working ith forms homework assignment
Author: Janiah Daniel
Course:ITWP 1000
File: style.css
Information on using external CSS style sheet is located in chapter 3 on media queries is located in chapter 7. Information on tables and CSS formatting for tables is located in chapter 8.
*/
body {
    font-family: Arial, Helvetica, sans-sarif;
    font-size: 12px
}
h1 {
    text-align: center;
}
label {
    padding: 2px;
    line-height: 2.5em;
}
fieldset {
    text-align: left;
    padding: 5px;
    background-color: #eee
}
section {
    max-width: 600px;
    margin: auto;
}
/*classes that style the textarea tag */
.comment {
    float: left;
    width: 100%;
    height: auto;
    padding-top: 5px;
}
.textinput {
    float: left;
    width: 99%;
min-height: 75px;
outline: none;
resize: none;
border: 1px solid grey;
}
/* ID that centers the validation text */
#validation {
    text-align: center;
}