.spoiler {
  background-color: gray;
  color: gray;
  border-radius: 4px;
  padding: 0.2em 0.4em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.spoiler.revealed {
  color: white;
  background-color: #333; /* a dark grey so the text stands out */
}
