
#menu {
    
    background-color:rgb(122, 212, 122);
    overflow: hidden;

}


#menu ul{
    list-style: none;
    display: flex;
    align-items: center;
}
#menu ul li{
    margin:0;
}
#menu ul li a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-family: sans-serif;
    padding: 14px 20px;
}
#menu ul li img{
    width:90px;
    height:80px;
}
   #menu ul li a:hover{
    background-color: rgb(168, 78, 78)
   }