body {
	background-color: pink;
	padding: 1vw;
}

.redsquare {
	background-color: red;

}

.bluesquare {
	background-color: red;

}

.neutral {
	background-color: silver;
	/*  we could have used pixes for width */
	/*  we could have use percentage for width */
	/*google vw  viewport width   aka vw   */
	height: 7vw;
	padding-top: 2vw;

	width: 9vw;
	float: left;
	margin: 1px;
	/*allign the text in the center*/
	text-align: center;
	font-size: 28pt;
	font-weight: bold;
	font-family: Courier New;

}


 


