h1 {color:blue;}

/* Bro overrode my CSS in the HTML */
p {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  text-align: center;
  color: white;
}

ul.a {list-style-type: square;}
ul.b {list-style-type: disc;}

ol.d {list-style-type: upper-roman;}

/* Not sure what I messed up for lists to not really do anything */

li.a {
 color: black; 
}

li.b {
 color: purple; 
}

li::marker {
  color: red;
  font-weight: bold;
  font-size: 1.2em;
}

li.a::marker {
  color: red;
  font-weight: bold;
  font-size: 1.2em;
}