#menu{
     background-color:#1313b4;
     overflow: hidden;
     width: 100%;
     height: 80px;
     position: fixed;
     top: 0;
     z-index: 999;
}
#menu ul{
    list-style: none;
    display: flex;
    align-items: center;
}
menu ul li{
    margin: 0;
}
#menu ul li a{
     text-decoration:none ;
     font-weight: bold;
     font-family:sans-serif ;
     color: antiquewhite;
     padding: 14px 20px;
} 
#menu ul li img{
    width: 50px;
    height : 50px;
}
#menu ul li a:hover{
    background-color: hsl(232, 11%, 56%);
}