/***********
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;
}

#headerLogo {
    max-width: 60px;
    display: block;
}

#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;
    }

    #headerLogo {
        margin: 0 auto 20px;
    }

    #headerNav {
        gap: 10px 20px;
    }
}