/* CSS Document used for the Web Project 1 homework assignment
Author: Kyle Montle
Course: ITWP 1100
File: homepagestyles.css
Information on using external CSS style sheet is located in Chapter 3. Information on media queries is located
in Chapter 7. Information on tables and CSS formatting for tables is located in Chapter 8.
*/

body {
    margin-top: 1em;
    margin-bottom: auto;
    font-family: Arial, 'Times New Roman', Times, serif;
}

h1 {
    text-align: center;
    font-size: 2.5em;
}

p, div {
    margin: 10px;
    padding: 10px;
    line-height: 1em;
}


