Why does the text look so light and not bold?
Bootstrap display classes set font-weight to 300, which is lighter than normal bold. This is intentional for a modern look.
💡 Display headings use light font weight by default, unlike normal headings.
Why is the font size so huge compared to normal headings?
Display classes use very large font sizes (3rem to 6rem) to create eye-catching titles, bigger than default heading sizes.
💡 Display classes scale font size up dramatically for emphasis.
What happens if I remove the display class but keep the h1 tag?
The heading will use the browser's default h1 size and weight, which is smaller and bolder than display classes.
💡 Display classes override default heading styles with bigger and lighter text.