@henrychris
Posted
The text color for this section: "These languages are the backbone of every website, defining structure, content, and presentation." is off compared to the design. If you check the Figma, you will see the color applied to that section. I suggest using a CSS class so you can reuse the styling.
The font appears small compared to the design too, causing the solution to appear smaller compared to the design. You may want to use a CSS reset or simply add:
html {
font-size: 100%
}
to the top of your CSS file. This way, your page inherits the font size from the users browser. In other places, you can set font-size using rem
instead of px
so font size dynamically changes based on the user's font.