I have an SVG file containing two different paths.
<path d="M 84.4 53.2 C 75.3 50.1 67.1 48.5 59.6 48.3 C 51.2 48 45.2 47.5 41.5 46.5 C 35.7 45.1 29.9 42.4 23.9 38.4 C 21.6 36.9 19.4 35.2 17.3 33.2 C 19.4 34.2 21.6 35 23.9 35.6 C 27.3 36.5 34.1 37 44.1 37.2 C 53.7 37.3 59.7 37.7 62 38.3 C 70.4 40.3 77...
<p>Can I apply CSS to fill each path individually?</p>
<p>This code fills the entire SVG:</p>
<pre><code>.svg-fill {
fill: red
}
How can I target and fill each path separately?