* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    font-family: 'Pretendard', sans-serif;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input,
textarea,
select,
select option,
button {
    font-family: inherit;
}

.scroll-hidden::-webkit-scrollbar {
    width: 0;
    height: 0;
}