.menu {
    background: var(--brown-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 8rem;
    border-bottom: 0.1rem solid var(--primary-color);
    z-index: 1;
}

@media (max-width: 800px) {
    .menu {
        height: 100%;
    }
}

.menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.menu h1 {
    font-size: 2.3rem;
    color: var(--letra-color); 
    padding-bottom: 9.5rem;
}

.menu h1 a {
    color: inherit;
}

.menu ul {
    list-style: none;
    display: flex;
    padding-bottom: 8.5rem;
}

.menu ul li a {
    display: block;
    padding: 2rem;
    font-size: 1.8rem;
    color: #8e704e;
    position: relative;
    padding-top: 26px;
}

.menu ul li a:hover {
    display: block;
    color: #7FFFF7;
    padding: 20px;
    transition: all 300ms ease-in-out;
}



