@PPechmann
Posted
Hey Toni!
Nice job on the challenge, congrats!
Regarding centering the card, there are various ways to approach it.
One of them is with flexbox. Just give the card container (in this case the body), a display: flex and then you will be able to "align-items: center" and "justify-content: center". In this case you will have to give the body a height, I suggest of 100vh, which will perfectly center the card on the page.
I recommend playing around with the browsers dev tools to try it out.
Hope it helps and feel free to let me know if you have any questions!
Happy Coding :)
Patrick
Marked as helpful
@ToenSh
Posted
@PPechmann Thanks a lot, tried it with dev tools and it actually worked!