/*
   New Perspectives on HTML
   Tutorial 3
   Case Problem 1

   ICI Text and Color Styles
   Author: David Katelansky
   Date:   05/13/2015

   Filename:         c_styles.css
   Supporting Files: none

*/

body
{
   background-color: black;
   color: white;
   font-family: "Century Gothic", sans-serif;
}

header h1
{
   color: yellow;
   font-family: "Courier New", Courier, "Lucida Console";
   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;
}

strong.keyword
{
   color: yellow;
   font-weight: normal;
}

footer p
{    
    text-align: center;	
	display: table;    
    margin: auto;
}

footer p.image
{
    width: 100%;	
}

image.usemap
{
   border-style: none;
   border-width: 0px;
}

