@charset "UTF-8";

.magicbox {
	width: 200px;
	height: 200px;
	background-color: black;
	float: left;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.magicbox:hover {
	background-color: antiquewhite;
	width: 400px;
	height: 200px;
}
