/* ========================================
   CSS Reset - 털보네
   ======================================== */

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

/* 기본 마진·패딩 제거 */
* {
    margin: 0;
    padding: 0;
}

/* html 기본 스타일 */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* body 기본 스타일 */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* 미디어 기본값 */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

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

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

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

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