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