/* defining styles per HTML item */
h2 {font-family: verdana;}
p {border: 2px solid white;
  padding: 30px;}
i {color: grey;}
ol {color: blue;}

/* defining the list styles and using classes so I could repeat it if I wanted to */
.roman {list-style-type: upper-roman;}
.decimal {list-style-type: decimal;}

.disc {list-style-type: disc;}
.circle {list-style-type: circle;}

/* defining the unique id for the un-ordered list */
#nestedList {font-family: verdana;}

