#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;
    position: sticky;
    top: 0;
    z-index: 100;
}

#headerLink {

}

#headerLinkLogo {
    max-width: 50px;
}

#headerNav {
    display: flex;
    gap: 10px 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.headerNavLink {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
}

.headerNavLink.active {
    text-decoration: underline;
}

@media (max-width: 800px) {
    #header {
        display: block;
    }

    #headerLinkLogo {
        margin: 0 auto 20px;
    }
}
