/* 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: black;
    color: white;
    font-family: Verdana;
}
.Nav-Bar {
  position: sticky;
  top: 0; /* Stick to the top of the viewport */
  background-color: navy; /* Optional: Add a background */
  padding: 10px; /* Optional: Add padding */
  z-index: 10; /* Optional: Ensure it stays on top of other content */
}
a:link {
  color: white; /* Color of unvisited links */
}

a:visited {
  color: white; /* Color of visited links */
}

a:hover {
  color: white; /* Color when hovering over the link */
}

a:active {
  color: white; /* Color when the link is being clicked */
}

.Content {
  /* Your main content styles */
}