@cauesooouzaSubmitted almost 2 years ago
as easy as pie
as easy as pie
To properly center your content to your page, you will want to add the following to your Body element (this method uses CSS Grid):
body {
min-height: 100vh;
display: grid;
place-content: center;
}
A little advice that they gave me before :3 I hope this helps! Keep up the good work!