body{
	background-color:lightgray;
	font-family: futura;
}

section{
	width: 200px;
	height: 200px;
	transition: transform 1s;
}
	section:nth-child(1):hover{
		background-color: skyblue;
		transform: rotate(120deg);
	}

	section:nth-child(2):hover{
		background-color: hotpink;
		transform: scale(0.5);
	}

	section:nth-child(3):hover{
		background-color: yellow;
		transform: skewX(-30deg);
	}

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