#menu{
    background-color: #76a3f0;
    overflow: hidden;
    position: fixed;
    top:0;
    width: 100%;
    height: 80px;
}
#menu ul{
    list-style: none;
    display:flex;
    align-items: center;
}
#menu ul li{
    margin: 0;
}
#menu ul li a{
    text-decoration: none;
    padding: 15px 25px;
    color: rgb(2, 76, 150);
    font-family:"Yeseva One", sans-serif;
}
#menu ul li img{
    width: 70px;
    height: 80px;
}
#menu ul li a:hover{
    background-color: #d5e3fe;
}