Q.3
Explain the purpose of the "viewport units" (vw, vh, vmin, vmax) in CSS and how they can be used for responsive design.
Viewport units are relative to the viewport dimensions. "vw" is a percentage of the viewport width, "vh" is a percentage of the viewport height, "vmin" is the smaller of the two, and "vmax" is the larger of the two. They are used for responsive design to size elements relative to the viewport.