What are you most proud of, and what would you do differently next time?
Slowly I'm finally learning about the flexbox and the positioning of elements or div.
What challenges did you encounter, and how did you overcome them?
At first, I went with the mobile-first design route but I realized that the design did not need media queries, so I decided to remove those breakpoints and then modified the CSS to be more accurate.
What specific areas of your project would you like help with?
Is there anything that I can improve within my code? I feel like that it needs some improvement especially using flexbox and margins
Since Kapteyn already said about flexbox Im just gonna add that you should use a bit more semantics in your html such as <article>, <section>, attribution at the bottom? just use footer. It looks cleaner to read afterwards and you know what it is after you read footer
Since there is no code Im just going to make assumptions. Regarding the whole container, you probably made it 100%, you could've made it certain height and made a body tag different height so that the container is not from bottom to top. As for the nutrition on the bottom, you could've made a table element in html with 2 columns and 4 rows, align the text to the left in both columns and it would be even. If that was your problem here, If its something else answer me below I'll try to help. Either way, good job for the rest!
Regarding your issue with horizontal gap between name and verified, you could've made a div that contains both of them, then you could play around with either display flex, maybe even use a grid there or just use gap. You should've centered the container but that's a quick fix. Other than that, all looks good
What are you most proud of, and what would you do differently next time?
I've successfully created the website with Sass and I'm becoming more comfortable with it. I tried out Mixins for the first time, and although there's still a lot to learn, I was able to pull it off.
What challenges did you encounter, and how did you overcome them?
I'm still learning Sass and becoming accustomed to structuring code across various files for improved organization and to avoid code repetition. I've been searching for guidelines and videos on the most common patterns and methods for structuring files within a repository.
What specific areas of your project would you like help with?
This time, I don't believe there are any specific issues, but please feel free to give me feedback on anything that could be improved or fixed. Thank you in advance!
All that I could think to say "negative" is you didn't really need to add a wrap div around everything else. Since all that's supposed to be shown for this exercise is what you've created, you could've just used whole of body for the wrap itself. Adding to that is since all that was supposed to be created was this, you didn't really need to add class to p and h2 on the cards themselves. That's my opinion of course, but other than that, everything is in place. Great work!
It does look like the image provided but its not responsive which this whole exercise is about. Not really a major miss but you forgot to add hover on the button. That's a pretty easy fix. Keep up the work!