/*
  style.css — base styles + list styling (external layer for cascade demo)
*/

/* Page defaults */
body {
  font-family: calibri;  /* a font*/
  color: #333;              /* default text color */
}

/* Section headings */
h2 {
  color: navy;
}

/* Paragraph base (overridden by internal styles in HTML) */
p {
  color: black;
}

/* --- List styling --- */

/* Unordered: square bullets */
.square-bullets {
  list-style-type: square;
}

/* Ordered: uppercase Roman numerals */
.upper-roman {
  list-style-type: upper-roman;
}

/* Ordered: lowercase letters */
.lower-alpha {
  list-style-type: lower-alpha;
}
