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

.Nav-Bar a:visited {
  color: black; /* Changes the color of visited links */
}

.Nav-Bar a:hover {
  color: black; /* Changes the color when the mouse hovers over the link */
}

.Nav-Bar a:active {
  color: black; /* Changes the color when the link is clicked */
}

}
a:link {
  color: red; /* Color of unvisited links */
}

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

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

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

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