I am trying to draw a cloud with text inside using this guide (https://latexdraw.com/cloud-shape-in-tikz/).
\documentclass[border=0.2cm]{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.symbols}
\begin{document}
\begin{tikzpicture}
\node[text width=0.55cm,text centered]
[execute at begin node=\setlength{\baselineskip}{8pt},
cloud,
draw] (c) at (0,0)
{\scriptsize{Lost\\Broker}};
\end{tikzpicture}
\end{document}
its output
Here as you can see Golden part i not perfectly centered, should be shift little bit right. I have used text centered, which did not helped.
Is it possible to aligh the text perfectly in center?
wanted text should be:
TeX
Golden // shifted 1 character to left

