/* Add a black background color to the top navigation */
.topnavCustomMenu {
  background-color: #000000;
  overflow: hidden;
  font-weight: bold;
  color: #f18658;
}

/* Style the links inside the navigation bar */
.topnavCustomMenu a:Link {
  float: left;
  display: block;
  color: #f18658;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 12px;
}

/* Change the color of links on hover */
.topnavCustomMenu a:hover {
  --background-color: #ddd;
  color: #fff;
}

.topnavCustomMenu a:visited {
  --background-color: #ddd;
  color: #f18658;
}

/* Add an active class to highlight the current page */
.active {
  background-color: #000000;
  color: #fff;
}

/* Hide the link that should open and close the topnav on small screens */
.topnavCustomMenu .icon {
  display: none;
}
