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

/* 기본 여백 제거 */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
margin: 0;
padding: 0;
}


/* 리스트, 링크 */
ul, ol {
list-style: none;
}


a {
text-decoration: none;
color: inherit;
}


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


/* 입력 요소 */
button, input, select, textarea {
font: inherit;
color: inherit;
}


button {
cursor: pointer;
}

