/* Exercício 1 */
.container a:not(:visited) {
  color: red;
}

/* Exercício 2 */
.article p::first-letter {
  background-color: yellow;
}

/* Exercício 3 */
.menu li:nth-child(3) {
  color: blue;
}

/* Exercício 4 */
.cta-button button:hover {
  filter: brightness(80%);
}

/* Exercício 5 */
.container > .highlight {
  border: 2px solid green;
}

/* Exercício 6 */
.navbar a:active { 
  color: purple;
}

/* Exercício 7 */
table tr:nth-child(odd) td {
  border: 3px solid pink;
}

/* Exercício 8 */
.sidebar > div:last-child {
  margin-right: 20px;
}

/* Exercício 9 */
.container > *:first-child:hover {
  background-color: lightblue;
}

/* Exercício 10 */
.header + .warning {
  font-weight: bold;
}
