/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

/* In your CSS file */

.highlight:hover {
  background-color: yellow;
}

/* This class makes spoilers that reveal on hovering the cursor over the spoiler */
.spoilerForHover {
   background-color: black;
 }
.spoilerForHover:hover {
  background-color: white;
 }
/* This class makes spoilers that reveal on clicking and holding the cursor*/
.spoilerForActive {
   background-color: black;
 }

.spoilerForActive:active {
  background-color: red;
 }