p {
    color: green;
}

#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;
}

#egads>p:last-child {
    color: cyan;
}

.zoinks {
    color: cyan;
}