#Top-nav h3{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    text-decoration: underline;
  }
  
  .top-nav-bar{
    display: flex;
  }
  
  .top-nav-bar{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 95%;
    color: #ffc001;
    
  }
  
  .top-nav-bar ul{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00738C;
    border-radius: 10px;
    text-align: center;
    color: white;
    width: 100%;
    height: 25px;
  }
  
  .top-nav-bar ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  padding: 0;
  height: 60px;
  }
  
  .top-nav-bar ul li a{
    color: white;
    padding: 0;
  }
  .top-nav-bar ul li:hover{
    background-color: #FFA205;
    border-radius: 10px;
    font-weight: bolder;
    font-size: 18pt;
  }
  /*====================================================================================================================================================

                                                                            Mobile Phone

======================================================================================================================================================*/
/*Based on your HTML and CSS code, I'll provide you with some media queries to make your website responsive for desktop, laptop, tablet, and mobile phone.

*Media Queries*
```*/
/* Mobile Phone */
@media (max-width: 768px){


    .top-nav-bar{
        width: 80%;
      }


}
