1this makes it so position absolute focuses in the middle of the element
2instead of the top-left corner
3
4.parent{
5 position: relative;
6}
7.child-element-you-want-centered {
8 position: absolute;
9 top: 50%;
10 left: 50%;
11 transform: translate(-50%, -50%);
12}