/*
   New Perspectives on HTML
   Tutorial 3
   Case Problem 1

   ICI Text and Color Styles
   Author: Jose Castro
   Date: February 28, 2025

   Filename:         c_styles.css
   Supporting Files: none

*/
body {
    background-color: black;    /* Sets background color to black */
    color: white;               /* Sets text color to white */
    font-family: "Century Gothic", sans-serif;
}

header h1 {
    color: yellow;               /* Sets text color to yellow */
    font-family: "Courier New", Courier, monospace; /* Sets font family to Courier New, Courier, or monospace */
    font-size: 28px;             /* Sets font size to 28 pixels */
    letter-spacing: 20px;        /* Sets kerning (letter-spacing) to 20 pixels */
    text-align: center;          /* Centers text */
}

article h2 {
    font-size: 24px;             /* Sets the font size to 24 pixels */
    font-weight: normal;         /* Remove boldfaces */
    letter-spacing: 5px;         /* Sets kerning (letter-spacing) to 5 pixels */
}

article p {
	text-align:justify; 		 /*Justifies alignment */
}

.keyword {
    color: yellow;               /* Sets text color to yellow */
    font-weight: normal;         /* Sets font weight to normal (non-bold) */
}

footer p {
    text-align: center;          /* Centers the text */
}

img[usemap] {
    border-width: 0;             /* Removes border */
}