#header{
    position: fixed;  
    top: 0; 
    z-index: 500;     
    width: 100%;
   
}
/* #header img{

position: absolute;
top: 0;
height: 100%;
z-index: 2;
padding-left: 100px;
} */
#menu{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center; 
    justify-content: center; 
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(5px); 
    border-bottom: 1px solid white; 
    border-top: 1px solid white; 
}
ul{
    color: white;
    width: 100%;
    margin-left: 20px;
    margin-right:20px ;
    font-family: "louis";
    display: flex;
    max-width: 700px;
    justify-content: space-between;
    list-style: none;

}


#menu ul a {
    color: white;
} 
li {
    cursor: pointer;
    padding: 10px;
    transition: all ease 0.4s;
}
li:hover {
    
    color: rgb(129, 112, 89);

}
/* @media screen and (max-width:769px) {
    ul{
        gap:2px;
    }

    li {
        width: auto;
        padding: 10px 8px;
        font-size: 15px;
    }
} */