/*
  This class can be applied to any element, such as a link ( tag),
  to make its text color white.
*/
.white-link {
  color: white;
  text-decoration: none; /* Optional: This removes the underline from the link */
}

/* Optional: This adds the underline back when a user hovers over the link,
   which is good for user experience.
*/
.white-link:hover {
  text-decoration: underline;
}