I embedded an SVG file as object as follows
<object type="image/svg+xml" data="img/icon-info.svg" id='ree' style="width:20px;height:20px;">
I did the styling inside the SVG file as follows:
<style type="text/css">
<![CDATA[
g {
fill: red;
stroke: blue;
stroke-width: 3
}
]]>
</style>
My question now is, how do I change its color/fill by hovering over the embedding object in the Html file?