I'm centered with Flex

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

Read about CSS Flexible Box Layout

I'm centered with Grid

.grid {
  display: grid;
  align-items: center;
  justify-items: center;
}

Read about CSS Grid Layout