/***********
Header
 */

#header {
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#headerTitle {
    text-transform: uppercase;
    font-size: 24px;
    display: flex;
    gap: 6px;
    margin-right: auto;
    font-weight: 500;
}

#headerTitle span {
    color: var(--brown);
}

#headerNav {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.headerNavLink {
    font-size: 18px;
}

.headerNavLink.active {
    text-decoration: underline;
}

@media (max-width: 800px) {
    #header {
        display: block;
    }

    #headerTitle {
        margin: 0 auto 20px;
        max-width: 300px;
    }
}