body and h1?The Generic layer in ITCSS contains styles that affect basic HTML elements globally, such as body and h1. This layer comes after Settings and Tools but before Components.
ITCSS import order starts with Settings (variables), then Tools (mixins/functions), Generic (reset/normalize), Elements (base styles), Objects (layout patterns), Components (UI components), and finally Utilities (helpers).
The selector #header .nav-item has an ID and a class, giving it higher specificity than simple classes or element selectors.
The code with display: flex and flex-wrap creates a flexible grid layout, which fits the purpose of the Objects layer.
The .sr-only class hides content visually but keeps it accessible to screen readers, improving accessibility.
