/* 초기화 스타일 (Reset) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    /* height: 100%; */
    background-color: #fcfcfc;
    color: #313131;
    font-family: 'Pretendard';
    font-weight: 400;
  }

/* Pretendard 웹폰트 등록 - 400, 500, 700 굵기 */
 @font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2109@1.1/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2109@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
  }

  
  /* 링크 기본 스타일 */
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* 이미지 반응형 */
  img {
    max-width: 100%;
    display: block;
  }

  /* h1 24px 고정 */
  h1{
    font-size: 1.25rem;
    font-weight: 600;
  }
