@charset "UTF-8";
/* CSS Document used for Working With Forms Homework #7 Assignment 
Author: Edith Harvey
Course: ITWP 1000
File: hw7-workingwithforms.css
*/

body {
     font-family: Arial, Helvetica, sans-serif;
     font-size: 12px;
}

h1 {
     text-align: center;
}

label {
     padding: 2px;
}

fieldset {
     text-align: left;
     padding: 5px;
     background-color: #eee;
}
legend {
     background-color: #f93;
     border: 1px solid #f00;
     padding: 5px;
     margin-bottom: 5px;
}
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 gray;
}

br {
     line-height: 2.5em;
}

/* ID that centers the validation text */
#validation {
     text-align: center;
}


/* link anchor tag styles */
/* all links before clicked */
a:link {
     text-decoration: none;
     color: #330099; /* dark blue */

}
/* visited link style */
a:visited {
     color: #ff0000; /* red */
}
/* hovering over link style */
a:hover {
     color: #999999; /* dark gray */
}
a:active {
     text-decoration: none;
     color: #000000; /* black */
}
