I have SVG element, and I want align text by x and y axis inside.
<svg width="90px" height="90px" viewBox="-9 -3 90 76" style="border: 1px solid black;">
  <g>
     <text>Lorem</text>
  </g>
</svg>
How can i do this? Thanks for any tips.
P.S. I can't change viewBox and sizes of SVG element or move text outside from g element.