
body {
}

.webtext {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
}

img	{
	width: 500px;
	height: 500px;
	transition: all 1s;
	margin: 10px;
}

img:hover {
	transform: scale(1.1);
}