@import url(./font.css);
@import url(./animation.css);

/* 사용 중인 폰트사이즈
  --fs-10: 10px;
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-24: 24px;
  --fs-36: 36px;
  --fs-40: 40px;
  --fs-48: 48px;
*/

:root {
  /* 색상표 */
  --mono-000: #ffffff;
  --mono-100: #f2f4f7;
  --mono-200: #f7f7f7;
  --mono-300: #eeeeee;
  --mono-400: #e0e0e0;
  --mono-500: #bdbdbd;
  --mono-600: #9e9e9e;
  --mono-700: #707070;
  --mono-800: #616161;
  --mono-900: #333333;
  --mono-1000: #000000;
  --main-50: #f4f2ff;
  --main-100: #eae8f8;
  --main-200: #d9d3ff;
  --main-300: #7761ff;
  --main-400: #113274;
  --red-50: #ffeeee;
  --red-100: #f18383;
  --blue-100: #f2f4f7;
  --blue-200: #518cff;
  --blue-300: #022891;
}

html {
  /* 16px * 0.5 = 8px */
  font-size: 50%;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  overscroll-behavior: none;
}

html,
body {
  max-width: 100vw;
}

body {
  padding: 0;
  margin: 0;
  background-color: var(--mono-000);
  font-family: Pretendard, -apple-system, system-ui, Arial, sans-serif;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: normal;
  overflow-wrap: break-word;
  overscroll-behavior: none;
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  display: none;
}

:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: default;
  tab-size: 4;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

* {
  flex-shrink: 0;
  border: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  overscroll-behavior: contain;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
p,
div,
span,
section,
em,
strong,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
  white-space: normal;
}

p {
  word-break: keep-all;
}

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

ol,
ul,
ul[role="list"],
ol[role="list"],
li {
  list-style: none;
}

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

button {
  cursor: pointer;
  background-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

summary::-webkit-details-marker {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}

summary {
  list-style-type: none;
}

i,
address,
em {
  text-decoration: none;
  font-style: normal;
}

.sr-only {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.hide-scroll {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scroll::-webkit-scrollbar {
  display: none; /* 스크롤바 영역을 숨김 */
}
