/* Styling für bunten Unterstrich */

/* altes Prinzip */
.undercolor { color:red;   }
.textcolor  { color:black; }

/* neuere und empfohlene Lösung */
.unterstrich { 
  text-decoration-line: underline;
  text-decoration-color: red;
}
