/* CSS DOcument used for the coffee table homework assignment
Author: Sumon Ahmed
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 {
	margin: 10px;
	font-family: Arial, sans-serif;
	background-color: #ACE1AF; 
	color: #343434;
}

h1 {
	text-align: center;
}

nav {
	text-align: center;
}

footer {
	text-align: center;
}


/* ID */

#validation {
	text-align: center;
}

/* media query that hides the image when the screen size is @ 550 px or lower */

@media only all and (max-width: 550px) {
	
	img {
		display:none;
	}
}

