/* 리셋, 기본 폰트, 공통 요소 */
/* base.css - 초기화 및 공통 스타일 */

/* 폰트 불러오기 */
@import url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nanum+Pen+Script');
@font-face {
    font-family: 'Shilla_CultureB-Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/Shilla_CultureB-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
     font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
        "Pretendard", "Noto Sans KR", "Malgun Gothic", "맑은 고딕", sans-serif;
    
}

/* HTML5 display reset */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}


/* 예시 
font-family: 'Open Sans', sans-serif;
font-family: 'Ubuntu', sans-serif;
font-family: 'Nanum Gothic';  400,700,800
font-family: 'Roboto', sans-serif;
@font-face 
 font-family: 'NanumSquare';
font-family: 'Lato', 'Noto Sans KR', Tahoma, Geneva, sans-serif;
font-family: 'Nanum Myeongjo';
font-family: 'Nanum Barun Gothic', sans-serif;
font-family: 'Cairo', sans-serif;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
font-family: 'Playfair Display', serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Spoqa Han Sans Neo', 'sans-serif';
font-family: 'Nanum Pen Script', cursive;

*/

/* Body base */
body {
    line-height: 1.6;
    /* font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', '돋움', Dotum, sans-serif; */
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
        "Pretendard", "Noto Sans KR", "Malgun Gothic", "맑은 고딕", sans-serif;
    font-size: 19px;
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}


/* List reset */
ol, ul {
    list-style: none;
}

/* Link reset */
a {
    color: inherit;
    text-decoration: none;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Input / button reset */
input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Image reset */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

/* Placeholder */
::placeholder {
    color: #999;
    opacity: 1;
}
@media(max-width:991px){ 
    body {
    line-height: 1.6;
    font-family: 'Apple SD Gothic Neo', "Pretendard",'Noto Sans KR', 'Malgun Gothic', '돋움', Dotum, sans-serif;
    font-size: 15px;
    color: #000;
}
 }
