/* CSS Document used for project number 1
Author: Justin Zeigler
Course: ITWP 1000
File: style.css
*/

/* Center the h1 */
h1 {
    text-align: center;
	font-size: 2.5em;
}

/* Center the nav tag */
nav {
    text-align: center;
}

/* Center the footer */
footer {
    text-align: center;
}

/* Style the body with background color, font color, font family, and margin */
body {
    background-color: #f0f0f0; 
    color: #00000; 
    font-family: Arial, sans-serif; 
    margin: 10px;
}

/*Picture Centering */
#picture {
	text-align:center;
}