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