stop using fixed pixel sizes for font scaling. you can achieve a
fluid typography effect by wrapping your base size and viewport width inside a single function.
font-size: clamp(1rem, 5vw, 3rem);
>this eliminates the need for multiple @media queries just to scale text. **it works perfectly even on ultra-wide monitors