Typically, you'll want to position an item by aligning it within a parent div. Flexbox is 1 way to do this and it will use the center point of the item. Follow these steps:
Create a parent div
Set it's css display property to "flex"
display: flex;
justify-content: center;
Place the item you want to center using it's center point within the parent div