/*
   New Perspectives on HTML
   Tutorial 3
   Case Problem 1

   ICI Text and Color Styles
   Author: Mauricio Rivas Briceno
   Date:   September 17, 2025

   Filename:         c_styles.css
   Supporting Files: none

*/

/* === General Page Styles === */
body {
  background-color: black;
  color: white;
  font-family: "Century Gothic", sans-serif;
}

/* === Header Styles === */
header h1 {
  color: yellow;
  font-family: "Courier New", Courier, monospace;
  font-size: 28px;
  letter-spacing: 20px;
  text-align: center;
}

/* === Article Heading Styles === */
article h2 {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 5px;
}

/* === Article Paragraph Styles === */
article p {
  text-align: justify;
}

/* === Keyword Styles === */
strong.keyword {
  color: yellow;
  font-weight: normal;
}

/* === Footer Styles === */
footer p {
  text-align: center;
}

/* === Image Map Styles === */
img[usemap] {
  border: 0;
}