body {
	background-color: Lightskyblue;
}

#spielfeld {
	display: grid; 
	grid-template-columns: repeat(3, 100px); 
	grid-template-rows: repeat(3, 100px); 
	gap: 5px; 
	margin: 20px auto; 
	width: max-content;
}

.feld { 
	width: 100px; 
	height: 100px; 
	background-color: Hotpink; 
	border: 1px solid black; 
	font-size: 60px; 
	text-align: center; 
	line-height: 100px; 
	cursor: pointer;
}
