/*
   New Perspectives on HTML
   Tutorial 3
   Case Problem 1

   ICI Text and Color Styles
   Author: Ricky Garcia
   Date:   9/21/2025

   Filename:         c_styles.css
   Supporting Files: none

*/
body { 										/* default style */
  background-color: black;
  color: white;
  font-family: "Century Gothic", serif;
}

header h1 { 								/* style rule for h1 heading in <header> */
  color: yellow;
  font-family: Courier, monospace;
  font-size: 28px;
  letter-spacing: 20px;
  text-align: center; 
}


article h2 {								/* style rule for h2 heading in <article> */
	font-size: 24px;
	letter-spacing: 5px;
	font-weight: normal;
}

article {									/* style rule for paragraph text in <article> */
	text-align: justify;
}

strong .keyword {							/* style rule for <strong> with the class "keyword" */
	color: yellow;
	font-weight: normal;
}

footer p {
	text-align: center;
}

img[usemap] {								/* targets all <img> with the usemap attribute */
  border: 0px;
}
