I've looked into other SVG text questions, but I'm struggling to understand my mistake. Currently, I'm working on a live site at and implementing the following code:
<svg class="svg-width desktop" style="margin:auto">
<path id="curve-individual-desktop" d="M 50 170 q 185 -70 400 0" />
<text>
<textPath xlink:href="#curve-individual-desktop" class="color-text" startOffset="50%" text-anchor="middle">
Thoughtfully Sourced
</textPath>
</text>
</svg>
Although I managed to center it on mobile devices, there seems to be an issue between screen sizes of 1000px and 1350px where it appears skewed and off-center. I'm currently stumped on how to resolve this situation.