A designer wants type to scale with the viewport between 320px and 1200px, then stop growing. They write the rule below but the text keeps growing past 1200px. What is the actual cause?
/* intent: fluid between 320px and 1200px, capped after */
h2 {
font-size: clamp(1.5rem, 4vw, 3rem);
}