/* 리셋 */

/* 여백 초기화 */
*, html {
    margin: 0;
    padding: 0;
}

/* 링크 초기화 */
a {
    text-decoration: none;
    color: inherit;
}

/* 목록 초기화 */
ul, ol, li {
    list-style: none;
}

/* 제목 초기화 */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

/* 볼드체 초기화 */
strong {
    font-weight: normal;
}

/* 이탤릭체 초기화 */
em, i {
    font-style: normal;
}

/* 테이블 초기화 */
table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

/* 이미지 라인 정리 */
img, video, iframe {
    vertical-align: middle;
}