body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background: #f0f0f0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.grid-container {
	display: grid;
	/* Here we're using 3 columns. If you have 9 items, 3x3 would be perfect. */
	grid-template-columns: repeat(3, 100px);
	gap: 20px;
	padding: 40px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.grid-item {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ddd;
	border-radius: 10px;
	width: 100px;
	height: 100px;
	text-decoration: none;
	color: #333;
	font-size: 1.2rem;
	transition: transform 0.2s ease, background 0.2s ease;
}

.grid-item-enabled:hover {
	background: #ccc;
	transform: scale(1.1);
}

.grid-item-enabled:hover span {
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

