#header{
    width: 100%;
    height: 100px;
    background-color: #fafafa;
    gap: 2rem;
    z-index: 1;
}
#headDiv{
    max-width: 1300px;
    margin: 0 auto;
    height: 100px;
    width: 94%;
    background-color: #fafafa;
    justify-content:space-between;
    display: flex;
}
#headResources{
    align-items: center;
    justify-content:left;
    display: flex;
    overflow: hidden;
}
#logo{
    margin-top: 3px;
    width: 94px;
    margin-right: 15px;
    min-width: 86px;
    margin-left: 2rem;
}
.navLinks{
    min-width: 63px;
    font-size: 19px;
    margin: 0 20px;
    text-decoration: none;
    color: #333;
}
@media (max-width: 870px) {
    .navLinks{
        display: none;
    }
    #headDiv{
        height: 100px;
        width: 100%;
        max-width: 779px;
        background-color: #fafafa;
        align-items: center;
        justify-content:left;
        display: flex;
        justify-content: space-between;
    }
}