A fluid-type rule is written as `font-size: clamp(2rem, 1vw + 0.5rem, 1rem)`. The intended minimum was 1rem and the max 2rem, but the author swapped them. What font-size results at a wide viewport where the preferred term is large?
h1 {
font-size: clamp(2rem, 1vw + 0.5rem, 1rem);
}