nav a {
  color: #842323;
}

/* 2. Lien actif */
a.active {
  color: aqua;
}

/* 3. Article avec classe featured */
.featured {
  color: blue;
}

/* 4. Premier paragraphe de chaque article */
article p:first-of-type {
  color: rgb(22, 70, 23);
}

/* 5. Éléments li pairs */
li:nth-child(even) {
  color: rgb(33, 27, 20);
}