using clamp allows you to avoid writing multiple @media queries for different screen sizes. it creates a
smooth scaling effect btwn your minimum and maximum font sizes.
>stop manually tweaking every breakpointfont-size: clamp(1rem, 5vw, 2.5rem); is the spoileronly way to keep your CSS clean w/o
calc(0px)
hacks.