.headerNav {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-link {
    text-decoration: none; /* Removes underline :) */

    &:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}