/* 공통 기본 스타일 */

/* 기본 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body 기본 스타일 */
body {
    font-family: 'Pretendard GOV', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fefefe;
    background-color: #1a1a1a;
}

/* 링크 기본 스타일 - 헤더 네비게이션과 문장 텍스트 제외 */
a:not(.nav-link):not(.sentence-text):link,
a:not(.nav-link):not(.sentence-text):visited,
a:not(.nav-link):not(.sentence-text):hover,
a:not(.nav-link):not(.sentence-text):active,
a:not(.nav-link):not(.sentence-text):focus {
    color: inherit;
    text-decoration: none;
}


/* 문단 스타일 */
p {
    margin: 0;
    padding: 0;
}

/* 제목 스타일 */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

/* 리스트 스타일 */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 이미지 스타일 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 버튼 기본 스타일 */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* 입력 요소 기본 스타일 */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

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

/* 푸터 링크 색상 고정 */
.footer-privacy a:link,
.footer-privacy a:visited,
.footer-privacy a:hover,
.footer-privacy a:active,
.footer-privacy a:focus {
    color: #838383 !important;
    text-decoration: none !important;
}
