/* =========================================================
   01. Base Styles
   - Resets, structural defaults, typography, links
   ========================================================= */

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

html,
body{
  height: 100%;
}

html{
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body{
  margin: 0;
  color: var(--ink);
  background: #F2F2F2;
  scroll-behavior: smooth;
  font-family: Pretendard !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden !important;
  /* 뷰포트를 벗어나는 요소 방지 */
  position: relative;
  /* 스크롤바 너비를 고려한 뷰포트 계산 */
  overflow-y: scroll;
}

p{
  margin: 0;
}

a{
  color: #807F7F;
  text-decoration: none;
  font-family: Pretendard;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

button{
  font: inherit;
  color: inherit;
}

/* Material Icons base font lock */
.material-icons,
.material-icons-outlined,
.material-icons-round,
.material-icons-sharp,
.material-icons-two-tone{
  font-family: 'Material Icons' !important;
  font-weight: normal !important;
  font-style: normal !important;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
