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

.box{
  float: left;
  padding: 0 0px 30px 0px;
   height: auto;

   width: auto;

   overflow: hidden;


    }

.box img{

   height:auto;

   width: auto;

   object-fit:cover;   

/* 마우스가 이미지를 벗어 났을 때도 자연스럽게 크기가 줄어들기 위함 */

   transform:scale(1.0);        

   transition: transform .5s; 
	

}

.box img:hover{            /* 마우스 호버시 */

   transform:scale(1.2);            /* 이미지 확대 */

   transition: transform .5s; 	/*  시간 설정  */

}



/*

*/

