/* ===== CSS Reset ===== */

/* 모든 요소 기본 여백 제거 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* html, body 기본 설정 */
html, body {
  height: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
}

/* 리스트 스타일 제거 */
ol, ul {
  list-style: none;
}

/* 링크 기본 스타일 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* 이미지 정렬 문제 방지 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 버튼 기본 스타일 제거 */
button {
  background: none;
  border: 0;
  cursor: pointer;
}

a, button {
    display: inline-block;
}

/* 테이블 기본 설정 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}