header{
    width: 100vw;
    display: flex;
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    z-index: 10;

    /* transition: 350ms; */
}
#headerContainer{
    margin: auto;
    padding: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav{
    display: flex;
    justify-content: end;
    ;

}
nav .headerItem{
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
    padding: 0px 18px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerItem:hover{
    color: var(--accent);
    cursor: pointer;
}