Use `position: absolute` and then use one of the commonly-available techniques for doing vertical and horizontal centering. The easiest right now is probably flexbox. Make a containing div and give it `display: flex; align-items: center; justify-content: center`. Then put your button inside that div.