@charset "utf-8";
/* CSS Document */
body {
	background-color: black;
	text-align: center;
	font-size: 32px;
	color: floralwhite;
}

img { 
	float: center;
	transition: transform 0.3s ease;	
}
img:hover {
	transform: scale(1.2); 
}
