What did you find difficult while building the project?
I found this project ok! I did have to do a bit of experimenting with the little grey box that had the subscription info a bit challenging but figured it out. Also, trying to get the background to work.
Which areas of your code are you unsure of?
Not sure of responsive mode. I was playing around with it and couldn't find a break point so I guess it's ok?
Do you have any questions about best practices?
Any feedback for media queries and how to centre a div! I always get stuck on this.
Thank you!
I do have some feedbacks for you, my first one is to scale the website up a bit, maybe make it a little bit bigger for 100% because I think you developed this for 150% (zoom). My second feedback is that you don't need to have a media query for this project at all, I did it with no media query and that is usually the best practice, if you could do it without media query then you should. And to center a div, you just have to:
.container {
display: flex;
justify-content: center; /* align the div center horizontally */align-items: center; /* align the div center vertically */}