Hi!
Congrats on completing this project.
Things to improve here.
I suggest adding a bit of padding to your body element so the card has some space around it on smaller viewports.
Try experimenting with the CSS layout tool Flexbox, it will help you greatly structuring elements on your webpage.
You could add a min-height: 100vh to your body element so it takes up the full height of the viewport while still being able to grow when the content inside it grows.
Try experimenting with CSS variables, they help you make your CSS values more reusable across your code.
I suggest using clear descriptive CSS classes like .card, .card-title and .card-description.
Try using semantic HTML elements like main, section and article.
Try using using relative CSS units like rem and em they make your layout more adaptable.
Be careful with setting a fixed width and height on your elements. If the content in these elements grows beyond these restrictions you’ll run into overflow issues. Keeping the height at auto - which block elements are by default - will be fine in most cases.
Try styling your elements using classes instead of ID’s. Most of the time they are the better choice. ID’s are mostly used to select elements using JavaScript, navigation on the page itself and to style unique elements.
you can get assistance by contacting me on email: [email protected]
I will feel happy to help you okay
thanks