When attempting to style an external image, I am unable to set margin: auto. While I can successfully adjust the body padding, it is crucial for this design to be responsive.
body {
background-color: #636565;
}
img {
margin-left: auto;
margin-right: auto;
}
<div id="map">
<img src="https://s.w-x.co/staticmaps/wu/wxtype/none/usa/animate.png">
</div>