
#menu{
    background-color: #23a7f2;
    overflow: hidden;
    width: 100%;
    height: 90px;
    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;
    color: white;
    padding:14px 20px ;
    font-weight: bold;
    font-family: sans-serif;
}
#menu ul li img{
    width: 70px;
    height: 70px;
    border-radius: 30px;
}
#menu ul li a:hover{
background-color:blue;
border-radius: 30px;

}