body{
    margin: 0;
}

header {
    background-color: #7a7a7a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding:10px 15px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 5px 1px #ccc;
}
header #main-logo{
    display: block;
    height: 80px;
    mix-blend-mode: multiply;
    transition: all .3s linear;
}

header nav ul{
    display: flex;
    margin: 0px;
    padding: 0px;
    gap:25px;
}
header nav ul li{

    list-style: none;
}
header nav ul li a{
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    padding: 6px 6px;
    transition: all .3s linear;
    border-radius: 8px;
    
}
header#main-logo:hover{
    filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
    transform: scale(105%);
    opacity: 50%;
}
header nav ul li a:hover{
    background-color: rgb(109, 91, 69);
    color: rgb(245, 218, 185);

    transform: scale(105%)

}

header nav ul li a:active{
    background-color: rgb(109, 91, 69);
    color: rgb(245, 218, 185);

 

}