	img {width: 100%;}
  .modal {
    display: none; /* 모달창 숨겨 놓기 */
    position: fixed; 
    z-index: 200; /* 모달창을 제일 앞에 두기 */
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto; /* 스크롤 허용 auto */
    cursor: pointer; /* 마우스 손가락모양 */
    background-color: rgba(0, 0, 0, 0.8);
	padding: 4rem 0;
  }
  /* 모달창 이미지 */
  .modal_content {
    margin: auto;
    display: block;
    width: 80%; height: auto;
    max-width: 1000px;
    animation-name: zoom;
    animation-duration: 0.8s;
  }
 .close {
    position: absolute;
    top: 0;
    right: 1.5rem;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  .close:hover, .close:focus{
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }