I am trying to align h2 and img (icon) elements and I know that I should add display: inline-block but they shifted to the left of the section. How can I center them?
HTML:
<h2>Coffee</h2>
<img src="https://cdn.freecodecamp.org/curriculum/css-cafe/coffee.jpg" alt="coffee icon"/>
CSS:
img {
  display: inline-block;
  vertical-align: -8px;
}
h2 {
  display: inline-block;
  text-align: center;
}
 
     
     
    