img {
	border-radius: 25%;
  }

  .zoom {
	 
border-radius: 25%;
	transition: transform .1s; /* Animation */
	margin: 0 auto;
  }
  
  .zoom:hover {
	transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }
body {
    background-color: #202225;
    text-align: center;
	font-size: 16px;
	color: white;
}