Hi,

Could you please adjust the contrast on the main page? Enhancing it to a ratio of 10.5 will ensure compliance with the WCAG AAA standards, making the content more accessible.

This will do it:
```css
.paragraph.card.green a,
.paragraph.card.green {
  color: black;
}
```

BTW. You might want to make those boxes a bit more even like so:
```css
.sidebarblock.cards .content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr) );
  gap: 1em;
}
/* this just reverts properties so you might want to remove them instead */
.paragraph.card {
  max-width: revert;
  margin: 0;
}
```

Cheers,
Nux

P.S.: I checked GitHub, but it appears the code of the website is no longer hosted there. Perhaps we should remove or update the "See this page on GitHub" link.

Reply via email to