/* 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." */
@font-face{
  src: url(Fonts/ComicSansMS.ttf);
  font-family: Comic;
}
.highlight {
  background-color: white; /* Vibrant marker yellow */
  padding: 2px 4px;          /* Optional padding to give the highlight breathing room */
  border-radius: 3px;        /* Optional slight rounding of the edges */
}
body {
  background-color: black;
  color: black;
  font-family: Comic;
}
mark {
  background-color: #ffffff; /* Custom gold/yellow */
  color: black;              /* Text color inside the highlight */
  padding: 2px 4px;          /* Adds a little space around the text */
  border-radius: 4px;        /* Rounds the corners slightly */
}