/* changes the the font and text color of everything in the body if theres no other style changing it */
body {color: black; font-family: sans-serif; }

/*Adds a underline to the header specifically h1 */
h1 {text-decoration: underline;}

/* changes the list style depending on the specific class allowing for indivial list changes */
ol.roman { list-style-type: lower-roman; }
ol.alpha { list-style-type: decimal; }
ul.disc { list-style-type: disc; }
ul.circle { list-style-type: circle; }

/* changes the nested list to have its own list style as well as moves the list closer */
ul ul { list-style-type: circle; margin-left:-20px;}

h2 {background-color: #1255;}