Latest comments
- @ServalFake@pantherdox
if you are a newbie developer, then this project is well enough crafted by you and you deserve appreciation for the effort you put on this project. As i can see you are still not good with position properties, try to practice flexbox and grid. To center this use: body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; }
or
body{ display: grid; place-content: center; min-height: 100vh; }
Marked as helpful