/* Customizing the body font and background */
body {
    font-family: sans-serif;
    background-color: lightyellow;
    color: black;
}

/* External style for h2 (This gets overridden by the internal style in my HTML) */
h2 {
    color: green;
}

/* Customizing the list styles */

/* Makes the first unordered list use square bullets */
ul.square-bullets {
    list-style-type: square;
}

/* Makes the nested list use circle bullets */
ul.circle-bullets {
    list-style-type: circle;
}

/* Standard numbers for the first ordered list */
ol.numbers {
    list-style-type: decimal;
}

/* Lowercase letters for the second ordered list */
ol.letters {
    list-style-type: lower-alpha;
}