@charset "UTF-8";
/* CSS Document */

.animatin_photo{
	opacity: 0;	
}

.animatin_photo_move{
 animation: photo_move 1.6s 1 ease forwards;

}


@keyframes  photo_move {
  	100% { 
		opacity: 1;
		transform: translateY(0px); 
		}
	
	 0% { 
		 opacity: 0;
		transform: translateY(100px); 
		}
}
