[object Object]
by shrpne
HTML
Here’s an updated SVG with:
* **More asymmetry** between left and right lobes
* A **sharper bottom point** (more acute angle)
* Still in the white, hand-drawn style with uneven curves:
```xml
<svg width="150" height="150" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path d="M50 90
C 25 65, 5 35, 22 20
C 35 8, 48 18, 50 28
C 52 18, 68 10, 78 24
C 92 40, 73 65, 50 90 Z"
fill="none"
stroke="white"
stroke-width="4"
stroke-linecap="round"
stroke-linejoin="round"/>
</svg>
```
You can tweak the control points (`C x1 y1, x2 y2, endX endY`) for even more randomness. Want me to increase the wobbliness or give it a sketchier feel?
CSS
body {background: #000;}