p { font-family: Verdana; }

h1   {color: white;}

p    {color: white;}

  li {
      color: white;
    }

    li span {
      color: white;
    }

  li {
      font-family: "Font-Name", fallback-font,  sans-serif ;
    }

 h1 {
      font-family: "YourFontName", sans-serif;
    }
 
h1 {
  text-align: center;
}

p {
  text-align: center;
}

.center-list-container {
  /* Centers the inline content inside the div */
  text-align: center;
}

.center-list-container ul {
  /* Turns the list into an inline block so it can be centered */
  display: inline-block;
  /* Aligns the list items to the left again for readability */
  text-align: center;
}

a:link {
  color: #FFFFFF; /* White for unvisited links */
}

a:visited {
  color: #FF0000; /* Red for visited links */
}

a:hover {
  color: #FFA500; /* Orange when hovering */
}

a:active {
  color: #FFD700; /* Gold when clicked */
}

