/* external CSS*/
/* general, applies to all text in the body/on the page */
body {
  font-size: 17px;
  font-family: serif;
  margin: 2em;
  background-color:#C9C5CB;
  color: #1E291E;
}

/* only applies to h2 */
h2 {
  font-size: 25px;
  font-style: italic;
  font-family: monospace;
  color: #B48EAE;
}

/* only applies to h3 */
h3 {
  font-size: 20px;
  font-style: italic;
  font-family: monospace;
  color: #9F88A4;
}

/* only applies to unordered lists */
ul { 
	margin-bottom: 7px;
	font-size: 15px;
}

/* only applies to the things with the id numberOrder
makes the list use numbers (1., 2., etc.) */
#numberOrder {
  list-style-type: decimal;
}

/* only applies to the things with the id romanOrder
makes the list use uppercase roman numerals (I., II., etc.) */
#romanOrder {
  list-style-type: upper-roman;
}

/* only applies to the things with the id packList
makes the list use no list marker */
#packList {
  font-size: 17px;
  list-style-type: none;
}