body{
	background-color: slategray;
}

section{
	width: 200px;
	height: 200px;
}

	section:nth-child(1){
		background-color: red;
		transform: rotate(45deg);
	}

	section:nth-child(2){
		background-color: orange;
		transform: scale(.75);
	}

	section:nth-child(3){
		background-color: yellow;
		transform: skew(45deg);
	}

	section:nth-child(4){
		background-color: limegreen;
		transform: translate(40px);
	}