#menu{
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #005ca9;
     overflow: hidden;
    
}

   #menu ul{
    list-style: none;display: flex;
    align-items: center;
   
   } 
   #menu ul li{
    margin: 0;
   }
   #menu ul li a{
    text-decoration: none;
    padding: 14px 20px;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
   }
   #menu ul li a:hover{
    background-color: #1891f4;
    color: black;
    border-radius: 8px;
    padding: 10px 15px;
   }
   #menu ul li img{
    width: 80px;
    height: 80px;
   }
   #menu ul button{
    margin-left: 50px;
    margin-top: 30px;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 20px;
    color: #1891f4;;
    background-color: white;
    padding: 8px 15px;
    border-radius: 6px;

   }
   #menu ul button:hover{
    background-color: #1891f4;;
    color: black;
    color: white;
    font-weight: bold;
    text-decoration: none;
   }
    
           
   