/* Add a black background color to the top navigation */
.topnav {
  background-color: #000000;
  overflow: hidden;
  font-family: var(--ff-secondary);
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 4px 16px;
  height: 18px;
  text-decoration: none;
  font-size: 14px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}







.footerNavBar {
    flex-grow: 1;
    width: 100%;
    height: 20px;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color:  #000000;
    text-align: center;
    font-weight: bold;
    color: white;
}

footer nav ul {
  padding: 0;
}

footer nav ul li {
  float: left;
  width: 15%;
  height: 30px;
  font-size: 10pt;
  text-align: center;
  list-style-type: none;        /* Remove bullets */
  padding: 0;                   /* Remove padding */
  margin: 0px 2px;              /* Remove margins */
  display: inline-block;
  vertical-align: top;
  font-family: var(--ff-secondary);
}

footer nav ul li a {
  margin: 0;
  display: block;
  color: white;
  text-decoration: none;
}

footer nav ul li a:hover, nav ul li a:focus {
 height: 20px;
 color:rgb(0, 0, 0);
 background-color: #ddd;;
}

 


