/* 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;
  {.top-banner 
    background-color: #333; /* Dark gray background */
    color: #fff; /* White text color */
    padding: 10px 0; /* Vertical padding, no horizontal padding */
    text-align: center; /* Center the text */
    font-family: Arial, sans-serif; /* Choose a suitable font */
    font-size: 16px;
    width: 100%; /* Ensure it spans the full width */
    /* Optional: for a fixed banner that stays at the top when scrolling */
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    /* z-index: 1000; /* Ensure it appears above other content */
}
}