#menu {
    background-color: cornflowerblue;
    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;
    padding: 14px 20px;
    font-weight: bold;
    font-family: sans-serif;
}
#menu ul li img{
width:50px ;
height: 50px
}
#menu ul li a:hover{
background-color: rgb(215, 215, 230);
}


