/* Add a black background color to the top navigation */
@font-face {
  font-family: 'RL', sans-serif;
  src: url(Poppins-Light.ttf);
}
@font-face {
  font-family: 'RR', sans-serif;
  src: url(Poppins-Regular.ttf);
}
@font-face {
  src: url(Poppins-Regular.ttf);
  font-family: 'RM', sans-serif;
  src: url(Poppins-Medium.ttf);
}


.topnav {
    background-color: #002B46;
    overflow: hidden;
    top: 5px;
    font-family: 'RM', sans-serif;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    z-index: 1000;
    justify-content: center; /* Add this line to center the navbar */
    max-width: 1000px;
    position: sticky;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    border-radius: 25px;
    font-weight: 300;
  }
  
  .topnav a {
    float: none; /* Remove the float property */
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 21px;
    position: initial;
    z-index: 1;
    font-family: 'RL', sans-serif;
    font-weight: 300;
  }
  
  
  
  .topnav a:hover {
    background-color : #dd1e1791;
    color: white;
    font-family: 'RL', sans-serif;
  }
  
  .topnav a.active {
    background-color: #DD1F17;
    color: white;
    font-family: 'RL', sans-serif;
  }
  
  .dropDown {
    display: none;
  } 