/*CSS Document used for Web Project 1
Author:Timothy Lam
Course:ITWP 1000
File:styles.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{
  background-color: aqua;
  color: black;
  font-family: Arial, sans-serif;
  margin: 10px;
}

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

nav{
  text-align: center;
  font-size: 1.2em;
  margin: 10px;
}

footer{
  text-align: center;
  font-size: 0.8em;
  margin: 10px;
}