/* box-sizing 초기화 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* margin, padding 초기화 */
body, h1, h2, h3, h4, h5, h6, p, blockquote, figure, dl, dd {
  margin: 0;
  padding: 0;
}

/* list 스타일 제거 */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* a 기본 스타일 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* button 스타일 초기화 */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* img 및 video 태그 하단 여백 제거 */
img, video {
  display: block;
  max-width: 100%;
}

/* form 요소 폰트 상속 */
input, button, textarea, select {
  font: inherit;
}

/* HTML5 요소 display 보장 (옛날 브라우저 호환용) */
article, aside, footer, header, nav, section, main {
  display: block;
}
/* span 스타일 초기화 */
span {
	font-style:normal;
}

