How to Center Anything with CSS – Centering things

Center Anything with CSS

.centred {
height: 50px;
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
width: 200px;
}

Source:
stackoverflow.com/questions/45827751/keep-div-centered