/* 박스 사이징 초기화 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 기본 마진/패딩 제거 */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, figure,
dl, dd, ul, ol,
pre, table,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/* 리스트 스타일 제거 */
ul, ol {
  list-style: none;
}

/* 링크 기본 스타일 초기화 */
a {
  text-decoration: none;
  color: inherit;
}

/* 이미지/미디어 반응형 */
img, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 폼 요소 기본 초기화 */
button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
}

/* 입력 요소 보더/아웃라인 초기화 */
input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}

/* 테이블 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
