.tictactoefeld button {
	background-color: transparent;
	border: hidden;
	width: 80px;
	height: 80px;
	cursor: pointer;
	font-size: 0pt;
}

.tictactoefeld table {
	border-collapse: collapse;
	color: white;
	font-size: 30pt;
	border-style: hidden;
}

.tictactoefeld td {
	
	border-color: white;
	border-width: 5px;
	border-style: solid;
	border-collapse: collapse;
	height: 80px;
	width: 80px;
	text-align: center;
}

.tictactoefeld caption {
	margin: 10px;
	padding: 10px;
}

.tictactoefeld .x {
	color: red;
}

.tictactoefeld .x ::after {
	content: "";
}

.tictactoefeld .o {
	color: blue;
}

.tictactoefeld .o ::after {
	content: "";
}

.tictactoefeld #punkteX {
	color: red;
	font-size: 60pt;
	position: absolute;
	right: 20%;
}

.tictactoefeld #punkteO {
	color: blue;
	font-size: 60pt;
	position: absolute;
	left: 20%;
}

.tictactoefeld img {
	width: 40px;
	height: 40px;
	
}