
.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;
}


body > p {
  color: green;
}


#egads > div > p {
  color: green;
}


#egads > p:nth-of-type(1),
#egads > p:nth-of-type(3),
#egads > p:nth-of-type(5),
#egads > p:nth-of-type(7) {
  color: orange;
}

#egads > p:nth-of-type(2),
#egads > p:nth-of-type(4),
#egads > p:nth-of-type(6),
#egads > p:nth-of-type(8) {
  color: green;
}
