Center My Div

If you're using Flexbox, just add the following css to the parent element.

        .parent__div { 
            display: flex; 
            justify-content: center; 
            align-items: center; 
        }
                    

You don't have to style the child at all.