/* CSS Document used for the web project 1 asssisignment
Author: TIarra Adams
Course: ITWP 1000
File: design.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 is located in Chapter 8.
*/

/* Body styling for all site pages */
body {
background-color: #f2f2f2; 
color: #333333; 
font-family: Arial, sans-serif; 
margin: 10px; 
}

/* Center the main page header (h1 tag) */
h1 {
text-align: center;
font-size: 2.5em;
color: #cc3333;
}

/* Center your site navigation (nav tag) */
nav {
text-align: center;
padding: 10px;
}

nav a {
margin: 0 15px;
text-decoration: none;
font-weight: bold;
color: #336633;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    width: 50%;
}

figure {
    text-align: center;
}

audio {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

/* Center your footer information (footer tag) */
footer {
text-align: center;
}




