@charset "utf-8";

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #3f3f3f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.2;
}

:root {
  --desktop-max-width: 1200px;
  --footer-height-desktop: 306px;
  --footer-height-mobile: 413px;
  --header-z-index: 10;
  --modal-z-index: 11;
  --scroll-z-index: 10;
}

/* 스크롤바 숨김 - WebKit 브라우저(Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE 11 */
* {
  -ms-overflow-style: none;
}
