I am trying to center an svg file into its parent div without success.
I have created this fiddle -> https://jsfiddle.net/wfukyd4q/
where you can see I did the following:
<div class="col-md-10 col-md-offset-1 col-sm-12 text-center">
<div style="background-color:#489734;height:500px">
<img src="https://42f2671d685f51e10fc6-b9fcecea3e50b3b59bdc28dead054ebc.ssl.cf5.rackcdn.com/illustrations/compose_music_ovo2.svg">
</div>
</div>
My goal is to make the svg let's say 50% and put it in the centre, but to be responsive for mobile devices too.
Thank you