This works when you know the width of the content.
body {
margin-left:auto;
margin-right:auto;
width:300px;
} This is a bit easier because you don't need to set the width.
body {
display:flex;
flex-direction:column;
justify-content: center;
align-items: center;
}