/*
   New Perspectives on HTML
   Tutorial 3
   Case Problem 1

   ICI Text and Color Styles
   Author: Breiona Bankhead
   Date:   9/21/25

   Filename:         c_styles.css
   Supporting Files: none

*/
/* Body Styling */
body {
  background-color: black;
  color: white;
  font-family: "Century Gothic", sans-serif;
}

/* h1 Headings Inside Header */
header h1 {
  color: yellow;
  font-family: "Courier New", Courier, monospace;
  font-size: 28px;
  letter-spacing: 20px;
  text-align: center;
}

/*h2 Headings Inside Article */
article h2 {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 5px;
}

/*Paragraphs Inside Article */
article p {
  text-align: justify;
}

/*Strong Elements with Keyword Class */
strong.keyword {
  color: yellow;
  font-weight: normal;
}

/*Paragraphs Inside Footer */
footer p {
  text-align: center;
}

/*Remove Border from Image Maps */
img[usemap] {
  border-width: 0px;
}