You're displaying your articles inline. Only block elements can be centered by setting their margins to auto
. So you need to make them block level elements for margin: auto
to work.
Your main section tag has a width of 100% by default. So you can't center it if it already fills the screen. So you need to make the width less then 100% for margin: auto
to work.