The color palette is really easy on the eyes. I have a few criticisms, though, all related to the cards under "Recent Articles":<p>1. In tablet size, the content of <h2>s get lost beneath the top of the card.<p>2. Even in desktop size, the spacing at the top of the cards looks off. Longer strings cause visual unevenness. CSS Grid should be able to fix the header spacing issues within cards.<p>3. Hard-coding the height of the cards is probably a mistake. Content should govern the height of the card, so actions such as user zoom or browser-level font size increases, scale the padding of the card appropriately.<p>4. When hovering over any part of the card, the hover style kicks in and the card text content raises slightly. This is usually a hint to the user that an action can be performed, like a click which follows the href. However, the user must click directly on the <a> inside of the <h2> to follow the link. I recommend making the entire card clickable, so the hover style seems more intentional. Otherwise, I would remove the hover style.