/* external CSS*/
/* I've made several good Css edits here!!*/
body {
  line-height: 1.4;
  font-size: 21.5px;
  font-family: 'Segoe UI', Tohama, Geneva, Verdana, sans-serif;
  margin: 2.5em;
  background-color:#ADD8E6;
  background: linear-gradient(150deg)
  color #EE4B2B;
}

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

/* only applies to h3 */
h3 {
  font-size: 20px;
  font-style: italic;
  font-family: monospace;
  background-color: #DC143C;
  color: #5E1C7F;
}

/* only applies to unordered lists */
ul { 
	margin-bottom: 10px;
  font-weight: normal;
  background-color: #008000;
	font-size: 19px;
}

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

/* 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;
  font-weight: normal;
}

/* only applies to the things with the id packList
makes the list use no list marker */
#packList {
  font-size: 21px;
  font-weight: normal;
  list-style-type: upper-roman;
}