/* reset 기본 */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* 드래그 방지 */
    -webkit-user-select: none; /* 크롬/사파리/iOS 웹뷰 */
    -moz-user-select: none;    /* 파이어폭스 */
    -ms-user-select: none;     /* IE/Edge 구버전 */
    user-select: none;         /* 표준 */
}

/* 기본태그 초기화 */
html, body {
    width: 100%;
    height: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    line-height: 1.5;
    background-color: #fff;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;

    /* 스크롤바 안보이게*/
    -ms-overflow-style: none;
    scrollbar-width: none;
}
body::-webkit-scrollbar{display: none;}

img, video {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

ul,
ol {
    list-style: none;
}

li{list-style: none;}

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

button,
a {
    touch-action: manipulation;
    /* 불필요한 터치액션을 막음(더블탭, 줌 등) */
    color: #222;
    cursor: pointer;
}


/* font */
@font-face {
    /* 프리텐다드 */
    font-family: 'Pretendard Variable';
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: url('/assets/font/PretendardVariable.woff2') format('woff2-variations');
}

@font-face {
    font-family: 'Paperlogy 5 Medium';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('/assets/font/Paperlogy-5Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Paperlogy 7 Bold';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('/assets/font/Paperlogy-7Bold.woff2') format('woff2');
}