/* reset.css */

/* box-sizing 통일 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 기본 margin 제거 */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  word-break: keep-all;
}

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

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

/* 이미지 기본 동작 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 폼 요소 폰트 상속 */
input,
button,
textarea,
select {
  font: inherit;
}

/* 버튼 초기화 */
button {
  background: none;
  border: 0;
  cursor: pointer;
}

/* body 기본 설정 */
body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
}
