function responsiveBoxes() {
return html`
<div style="width: 100%; height: 54px; position: relative">
<div style="${maxWidth(200)}">
${boxes(12, "rgb(228, 26, 28, 0.2)")}
</div>
<div style="${minWidth(201)}">
<div style="${maxWidth(400)}">
${boxes(24, "rgb(77, 175, 74, 0.2)")}
</div>
</div>
<div style="${minWidth(401)}">
${boxes(36, "rgb(55, 126, 184, 0.2)")}
</div>
</div>`;
}