html`<svg width=200 height=200>
<g transform="rotate(${counter}) translate(100, 100)">
<line x1="-6" x2="6" y1="0" y2="0" style="stroke: black"/>
<line y1="-6" y2="6" x1="0" x2="0" style="stroke: black"/>
<circle cx="-50" cy="-50" r="20" fill="#61d4b3" />
<circle cx="40" cy="50" r="20" fill="#fdd365" />
<g transform="scale(1.5)">
<circle cx="25" cy="-30" r="20" fill="#fb8d62" />
</g>
</g>
</svg>
<svg width=200 height=200>
<g transform="translate(100, 100) rotate(${counter})">
<line x1="-6" x2="6" y1="0" y2="0" style="stroke: black"/>
<line y1="-6" y2="6" x1="0" x2="0" style="stroke: black"/>
<circle cx="-50" cy="-50" r="20" fill="#61d4b3" />
<circle cx="40" cy="50" r="20" fill="#fdd365" />
<g transform="scale(1.5)">
<circle cx="25" cy="-30" r="20" fill="#fb8d62" />
</g>
</g>
</svg>
`