/* CSS Document */

body {
	background: #000000;
}

table {
	border-style: none;
	border-width: 0;
}

td {
	width: 15%;
	height: 25%;
	vertical-align: middle;
	text-align: center;
	border-style: none;
	font-size: 10vw;
}

tr {
	height: 25%;
}

tr:nth-of-type(odd) td:nth-of-type(odd){
	background-color: #75ABEC;
}

tr:nth-of-type(even) td:nth-of-type(even){
	background-color: #75ABEC;
}

tr:nth-of-type(odd) td:nth-of-type(even){
	background-color: #F586D4;
}

tr:nth-of-type(even) td:nth-of-type(odd){
	background-color: #F586D4;
}

