.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    padding: 0 5rem;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 100;

    & nav {
        
    & ul{
            display: flex;
            align-items: center;
            gap: 2rem;

            & a{
                text-decoration: none;
                font-size: 1.6rem;
                color: rgb(109, 109, 109);
                font-weight: 500;
            }
        }
    }
}