/*
   New Perspectives on HTML
   Tutorial 3
   Case Problem 1

   ICI Text and Color Styles
   Author: Lana Colon
   Date:   3/5/2025

   Filename:         c_styles.css
   Supporting Files: none

*/

body {
	background-color: black; /* sets default for all body elements*/
	color: white;
}
	
	
	header { 
	 h1 { 
		color: yellow;
		font-family: "Courier New", "Courier", monospace; 
		font-size: 28px;
		font-kerning: normal; 
		letter-spacing: 20px;
		text-align: center;
		}
	}
	
	article {
		& h2{
			font-size: 24px;
			font-kerning: normal;
			letter-spacing: 5px;
			font-weight:normal;} 
		text-align: justify;
	}
	
	.keyword {
		color: yellow;
		font-weight:normal;
	}
	footer {p {text-align: center;}}
	
	
	img[usemap]{
	border-width: 0px;
	}
	
	