@import url('../fonts/pretendard.css');

:root {
    --nvh : calc(var(--vh, 1vh) * 100);
}

* {
    font-family: 'Pretendard';
    color: #000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

a {
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    color: #000;
}

img {
    -webkit-user-drag: none !important;
    max-width: 100%;
    vertical-align: top;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    list-style: none;
}

input:focus-visible {
    outline: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    /* 기본(네이티브) 모양을 제거 */
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
    /* X 버튼 및 검색 결과 버튼 숨기기 */
}

p {
    margin-bottom: 0;
}

strong {
    font-weight: bold;
}



