/* reset.css */

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

/* margin, padding 제거 */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, figcaption {
  margin: 0;
  padding: 0;
}

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

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

/* 이미지 */
img {
  max-width: 100%;
  display: block;
}

/* 버튼 */
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* input */
input, textarea {
  border: none;
  outline: none;
}