/* CSS Document */

.imagen{
	border:10px solid tomato;
	border-radius: 50%;
	width:200px;
	height:200px;
	margin:150px auto
	transition:all 1s ease
	
	}
	
	.imagen:hover{
		
		width:200px;
		-webkit-transform:scaleX(1.5) scaleY(0.5);
		}