Learn how to pick good colors and build websites that everyone can use.
/* Auto-responsive grid without media queries */
.tool-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.5rem;
}
/* Fluid typography using clamp */
h1 {
font-size: clamp(2rem, 5vw + 1rem, 4rem);
}