#menu{
    background-color: grey;
    overflow: hidden;
    position: fixed;
    width: 100%;
    padding-top: 5px;
    top: 0;
}

#menu ul{
    list-style: none;
    display: flex;
    align-items: center;
}
#menu ul{
    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: 50px;
    height: 50px;
}
#menu ul li a :hover{
    background-color: darkblue;
}
