/* CSS Document used in web project 1
Author: Jack David Day
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. Informaion on tables 
and CSS formatting for tables is located in chapter 8.
*/


h1{
 text-align: center;
}

nav{
 text-align: center;
}

footer{
 text-align: center;
}

h2{
    text-align: center;
}

figure{
    text-align: center;
}

audio{
    display: block;
    margin: 20px auto;
}

iframe{
    display: block;
    margin: 20px auto;
}

body {
  background-color: #f4f4f4;   /* Background color */
  color: #333333;              /* Font color */
  font-family: Arial, Helvetica, sans-serif;  /* Font family */
  margin: 10px;                /* 10px margin on all sides */
}