/* Comment for CSS. Note that the comment style for HTML and CSS are different! */

/* Font Family change to Courier New, as well as changing the background color to something different via hex code. */
body {font-family: Courier New, sans-serif; 
  		background-color: #FFFDD0;
}

/* Color Change of text to grey*/
p {color: #808080;}

/* External color change via Cascading Style Sheets. However, because h2 is reflected within the internal structure of HTML, this part does not take effect (internal higher priority than external). */

h2 {color: forestgreen;}