/* reset.css */

/* 모든 요소 기본 여백 제거 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* HTML5 요소 블록화 */
  article, aside, footer, header, nav, section {
    display: block;
  }
  
  /* 리스트 스타일 제거 */
  ul, ol, li{
    list-style: none;
  }
  
  /* 링크 스타일 초기화 */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* 이미지 반응형 기본 */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* 폼 요소 기본화 */
  button, input, select, textarea {
    font: inherit;
    border: none;
    background: none;
    outline: none;
  }
  
  /* 테이블 기본 */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  button {
  pointer-events: auto; /* 클릭 허용 */
        /* 다른 요소보다 위로 */
    cursor: pointer;
}