/* CSS Style Sheet for CSS Course Homepage */
/* Edith Harvey */

/* body main style */
body {
     font-family: "Comic Sans MS", "Century Gothic", Arial, Helvetica, sans-serif;
     font-size: 12px;
     color: #000000 /* black text */
}

/* heading 1 style */
h1 {
     color: #009900; /* darker green */
     text-align: center;
}

/* heading 5 style */
h5 {
     color: #009900; /* darker green */
     font-style: italic;
     text-align: center;
}

/* unordered/bulleted list style */
ul.schedule li {
     color: #000000; /* black */
     list-style-position: outside;
}

ul.schedule li.assignment {
     list-style-type: circle;
}