I have tried to center this vertically in body (not horizontally). Also, I do not want to specify heights or anything like that. I tried adding a wrapper with a
body
this worked for me:
Style.css
div { position: relative; top: 50%; transform: translateY(-50%); }
I found this code snippet here.