body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	background-color: #f4f4f4;
}

.card {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	width: 100%;
	max-width: 1050px;
	/* Limita el tamaño máximo del card */
	overflow: hidden;
}

#grid {
	display: grid;
	grid-template-columns: repeat(50, 20px);
	/* Aumentamos el número de columnas */
	grid-template-rows: repeat(30, 20px);
	/* Reducimos el número de filas */
	gap: 1px;
}

.cell {
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	cursor: pointer;
}

.filled {
	background-color: black;
}