I can't center this caption next to my image:
body {
background-color: grey;
}
#img-div {
width: 100%;
max-width: 633px;
height: auto;
margin-left: auto;
margin-right: auto;
display: block;
border-style: outset;
padding: 2px 500px 2px 2px;
margin-bottom: 2em;
text-align: center;
border-image-width: auto;
}
#image {
border: groove;
max-width: 500px;
float: left;
}
#img-caption {
font-size: 300px;
}
figcaption {
clear: both;
max-width: 500px;
font-style: italic;
}
<body>
<div id="img-div">
<img id="image" alt="steve Irwin" src="https://via.placeholder.com/100">
<!-- I cant center this caption next to my image-->
<caption id="img-caption">"We dont own planet earth, we belong to it. And we must share it with our wildlife"
<br>
<p>- Steve Irwin</p>
</caption>
<figcaption>
"The Crocodile Hunter", Steve Irwin, poses with a three foot long alligator at the San Francisco Zoo on June 26, 2002 in San Francisco, California.
</figcaption>
</div>
</body>