Responsive typography scales smoothly across all screen sizes.
font-size: clamp(16px, 2vw + 1rem, 48px);
How it works
clamp() selects a value between a minimum and a maximum. It prefers the middle value (viewport-based), but ensures the text never gets smaller than MIN or larger than MAX.