
p {
  color: green;
}


.zoinks {
  color: cyan;
}


#narf p:nth-of-type(1) {
  color: blue;
}

#narf p:nth-of-type(2) {
  color: blueviolet;
}

#narf p:nth-of-type(3) {
  color: cadetblue;
}


#egads > p:nth-of-type(odd) {
  color: orange;
}

#egads > p:nth-of-type(even) {
  color: green;
}
