h1 {
  color: red;
}
p {
  color: green;
}

.special {
  color: orange;
  font-weight: bold;
}

li em {
  color: rebeccapurple;
}

h1 + p {
  font-size: 200%;
}

p span {
  color: red;
}

a {
  font-weight: bold;

}

a:link {
  color: teal;
}

a:visited {
  color: green;
}

a:hover {
  text-decoration: none;
}

h1 + p .special {
  color: yellow;
  background-color: black;
  padding: 5px;
}

