User Story #9 Tribute Page

I having trouble with my alignment. The element should be centered within its parent element.
my image is not centered. I cant figure it out. Im sure its easy to someone. Its just the last piece of the puzzle. Here is the link. Help me Obi Won.

https://codepen.io/DeathB4Decafe/pen/OJJaGNy

You missing to set the margin attribute

#image {
  margin: 0px auto;
}

This center the element within its parent element.

Perfect. Thank you very much.