* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	padding: 20px;
	background: #f5f5f5;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	min-width: 220px;
	height: 120px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Arial, sans-serif;
}
