body {
	font-family: sans-serif;
	margin: 0;
	padding: 1em;
	background: #f0f0f0;
}

.container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1em;
}

.tile {
	background: white;
	border: 1px solid #ccc;
	border-radius: 8px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	text-decoration: none;
	color: inherit;
}

.tile img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}
