Am trying to animate the following SVG from the current size to smaller size like a dot in number of seconds.
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px">
<style type="text/css">
.st3{fill:#E8D99C;stroke:#0C3854;stroke-miterlimit:10;}
</style>
<path
class="st3"
d="M220.8,724.8l-12.6,13.1c-2,2-5.1,2-7.1,0l-12.6-13.1c-2-2-2-5.4,0-7.4l12.6-13.1c2-2,5.1-2,7.1,0l12.6,13.1
C222.8,719.4,222.8,722.8,220.8,724.8z"
/>
</svg>
How can I achieve that with JavaScript or CSS ?