/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* 리스트 스타일 제거 */
ul,
ol {
  list-style: none;
}

/* 링크 기본 스타일 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* 버튼 기본 스타일 제거 */
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* 이미지 기본 스타일 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 테이블 기본 스타일 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 입력 요소 기본 스타일 */
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
}

/* 제목 기본 스타일 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
}
