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

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

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

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

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