#container {
	display: flex;
}

#filters {
	list-style: none;
}

#filters li {
	margin: 1em;
}

#filters button[aria-pressed="true"] {
	background-color: blue;
}

#list {
	list-style: none;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

#list li {
	padding: 2em;
	background: black;
	color: white;
}