@AdrianoEscarabote
Posted
Hello! You did well in this challenge, but I have some tips for you:
1- Document should have one main landmark, you could have placed it inside a main tag click here
2- Page should contain a level-one heading click here
3- I saw that you used position: fixed;
to centralize the content, but you could have used flex-box to do that, flex-box, besides being more recommended to do this, is more manipulable and allows you to create fully responsive layouts.
body {min-height: 100vh; flex-direction: column; display: flex; align-items: center; justify-content: center;}
I'll leave a link so if you don't know flex-box, you can learn: click here
Hope it helps... don't forget to mark it as helpful 👍
Marked as helpful
@codewithmide
Posted
@AdrianoEscarabote Thank you bro. I'll take that into consideration when doing future projects