/* CSS Document used for Project 1 Web Project
Author: Leo Hoxha
Course: ITWP 1000
File: main.css
Information on using external CSS style sheet is located in CHapter 3. Information on media queries is located in Chapter7. Information on tables and CSS formatting for tables is located in Chapter 8.
*/
/* Body Style */
body {
    background-color: gray;                    
    color: black;                               
    font-family: "Times New Roman", serif;      
    margin: 10px;                               
}

/* Center the main page header */
h1 {
    text-align: center;
}
h2{
    text-align: center;
}

/* Center the site navigation */
nav {
    text-align: center;
}
/* Center the images and captions  */
figure {
    text-align: center;     
    margin: 20px auto;      
}

figure img {
    display: block;         
    margin: 0 auto;         
    max-width: 100%;        
    height: auto;           
}

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