* {
    background-color: black;
    text-align: center;
}

h1,
h2 {
    color: blue;
    text-align: center;
}

div {
    border: 2px solid red;
    margin: 10px;
    padding: 10px;
}

a {
    color: chocolate;
    font-size: x-large;
}

p {
    color: green;
    font-size: 20px;
}

.zoinks {
    color: cyan;
}

#egads div p:nth-child(2) {
    color: green;
}

#egads p:nth-child(2),
#egads p:nth-child(4),
#egads p:nth-child(6),
#egads p:nth-child(8) {
    color: orange;
}

#egads #narf p:first-child {
    color: blue;
}

/* make this have the blue violet colour */
#egads #narf p:nth-child(2) {
    color: blueviolet;
}

#egads #narf p:last-child {
    color: cadetblue;
}