#menu{
   background-color: #5b6b8d;
 position: fixed;  
    width: 100%;
    height:60px;
    overflow: hidden;
    top:0;

}
#menu ul{
    display: flex;
    list-style: none;
    align-items: center;
   
}
#menu ul li{
    margin: 0;
}
#menu ul li a{
    color:aliceblue;
    padding:20px;
}
#menu ul li img{
    width: 100px;
    height: 50px;
}
#menu ul li a:hover{
    color: blue;
}