div {
    border: 2px solid red;
    margin: 10px;
    padding: 10px;
}

a {
    color: red;
    font-size: x-large;
}

p {
  color: green;
}

p.zoinks {
  color: cyan;
}

#narf p:first-child {
  color: blue;
}

#narf p:nth-child(2) {
  color: blueviolet;
}

#narf p:last-child {
  color: cadetblue;
}

#egads > p:nth-of-type(odd):not(.zoinks) {
  color: orange;
}