/*
   New Perspectives on HTML
   Tutorial 3
   Case Problem 1

   ICI Text and Color Styles
   Author: Joshua Gonzalez
   Date:   3/7/25

   Filename:         c_styles.css
   Supporting Files: none

*/
body {
	color: white;
	background-color: black;
	font-family:"Century Gothic", sans-serif; 
}
header h1 {
	color: yellow;
	font-family: Courier New, Courier;
	font-size: 28px;
	letter-spacing: 20px;
	text-align: center;
}
article h2{
	font-size: 24px; 
	font-weight: normal;
	letter-spacing; 5px;
}
article p{
	text-align:justify;
}
.keyword{
	color: yellow;
	font-weight: normal;
}
footer{
	text-align: center;
}
img[usemap] {
border-width: 0px;
}