https://i.sstatic.net/HSdlQ.png
I am working with an SVG element and I have a query regarding its positioning.
<svg style="height: 100%" viewbox="0 0 100 25" preserveAspectRatio="none">
<path fill="blue" d="M0 30 V12 Q30 17 55 12 T100 11 V30z" />
</svg>
How can I make sure that the lower part of the SVG reaches the bottom of the screen even if it's too long and requires scrolling? Any suggestions?