.fakeimg {
    height: 200px;
    background: #aaa;
	}
  .person {
	  border: 10px solid transparent;
	  margin-bottom: 25px;
	  width: 200px;
	  height: 200px;
	  opacity: 0.9;
	}
	.person:hover {
	  border-color: #f1f1f1;
	}
	 
* {
	  box-sizing: border-box;
	}

.zoom {
	  padding: 0px;
	  background-color: #f0f0f5;
	  transition: transform .2s;
	  width: 200px;
	  height: 200px;
	  margin: 0 auto;
	}

	.zoom:hover {
		  -ms-transform: scale(1.5); /* IE 9 */
		  -webkit-transform: scale(1.5); /* Safari 3-8 */
		  transform: scale(1.5); 
		}
		
.body0 {
	
	  background-color: #e6f5ff;
	  font-family: serif;
	  
	}
.body1 {
	  background-color: #f0f0f5;
	  font-family: serif;
	  
	}
.body2 {
	  background-color: #000f1a;
	  font-family: serif;
	  color: white
	}
.body3{
	  background-color: #b3e0ff;
	  font-family: serif;
	} 
.body4{
	  background-color: #004d80;
	  font-family: serif;
	} 
.glow {
		  font-size: 14px;
		  color: #000;
		  text-align: center;
		  -webkit-animation: glow 1s ease-in-out infinite alternate;
		  -moz-animation: glow 1s ease-in-out infinite alternate;
		  animation: glow 1s ease-in-out infinite alternate;
		}

		

	@-webkit-keyframes glow {
		from {
				text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
			  }
		  
		  to {
			text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
		  }
		}

