/* Add a black background color to the top navigation */
.topnav {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 103px;
    padding-top: 10px;
  }
.navLogo {
    color:white;
    padding-left: 20px;
}  
.navLogo img {
  height: 60px;
}
.navContent {
    display:flex;
    justify-content: center;
    align-items: center;
}

  /* Style the links inside the navigation bar */
  .topnav a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    color: gold;
  }
  
  /* 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;
  }

.mainIcon {
    color: white;
    font-size: 100px;
    position: absolute;
    right: 20px;
    top: 50%;
}
.mainIcon i {
    
}

.navRight{
  display:flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-right:40px;
}

a.rb {
  border: white 1px solid;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
}

a.rb:hover {
  border: gold 1px solid;
  background-color: gold;
  color: black;
}

@media screen and (max-width: 800px) {
    .topnav a {
      display: none;}
    .topnav .navLogo a {display:block;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 800px) {
    /* .topnav.responsive {position: relative;} */
    .topnav.responsive {
      display: block;
      height: 100vh;
      overflow: auto;
    }
    .topnav.responsive .navContent, .topnav.responsive .navRight {
      display: block;
      padding-left: 30px;
    }
    .topnav.responsive a.rb {
      display:none;
    }

    .topnav.responsive .icon {
      position: absolute;
      right: 20;
      top: 20;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }
