In the following, I want to center image and quote. Although I have managed to do so, their position in the center is slightly different. How can I make them be precisely in the center and image exactly under quote? Thanks in advance.
HTML:
<p id="quote">It is not who I am underneath, but what I do that defines me</p>
<img src="http://comiconverse.com/wp-content/uploads/2016/10/The-Dark-Knight.jpg">
CSS:
img {
max-width: 40%;
max-height: 40%;
width: auto;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 50%;
float: left; }
#quote {
text-align: center; }