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