Check boxes and radio buttons currently just use the browser's default color (usually blue):  It's easy to set the color of these by setting an `accent-color` (I've also made them larger in this example):  The CSS: ```scss input[type="checkbox"], input[type="radio"] { accent-color: #ca1237; transform: scale(2) translateX(50%); margin-right: 0.5rem; } ```