@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Noto+Sans+KR&display=swap');

/*
font-family: 'Gowun Dodum', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
*/

body {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 1rem;
    color: rgb(60,60,60);
    background-color: #f0f0f0;
    padding-top: 3.7rem;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}
a {
    text-decoration: none;
    color: inherit;
}

#content-body {
    margin-top: 5.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

/* 본문 pills 탭 */
.nav-pills .nav-link {
    color: rgb(0, 19, 226);
}
.nav-pills .nav-link.active {
    background-color: rgb(40, 46, 107);
}

/*
#content-body input::placeholder {
    color: #a0a0a0;
    font-style: italic;
    font-size: .9em;
  }
*/

#content-body .form-floating label {
    color:darkcyan;
}

.shdow-black, .shadow-black {
    text-shadow:
            4px 4px 0 rgba(0,0,0,.5),
          -1px -1px 0 rgba(0,0,0,.5),  
            1px -1px 0 rgba(0,0,0,.5),
            -1px 1px 0 rgba(0,0,0,.5),
            1px 1px 0 rgba(0,0,0,.5);
}

.shdow-yellow, .shadow-yellow {
    text-shadow:
            3px 3px 0 rgba(225, 255, 0, .5),
          -1px -1px 0 rgba(225, 255, 0, .5),
            1px -1px 0 rgba(225, 255, 0, .5),
            -1px 1px 0 rgba(225, 255, 0, .5),
            1px 1px 0 rgba(225, 255, 0, .5);
}

.font-sub {
    font-family: 'Gowun Dodum', sans-serif;
}

/* 별점 표시 */
:root {
    --star-color: #e0e0e0;
    --star-background: #fc0;
  }
  
  .star-rating {
    --percent: calc(var(--rating) / 5 * 100%);
/*    display: inline-block;*/
    font-family: Times;
    line-height: 1;
  }
  .star-rating::before {
    content: "\f005\f005\f005\f005\f005";
    font-family: FontAwesome;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

/* 서브페이지 캐로우셀 */
#carousel-sub {
  height: 300px;
  margin-top: 0;
  width: 100%;
}
#carousel-sub .carousel-item {
  background-repeat:no-repeat;
  background-size:cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-position: top 30% left 0%;
}
#carousel-sub .carousel-caption {
  top: 120px;
}
#carousel-sub .carousel-caption h1 {
  /* font-size: 2.5rem; */
  color: white;
  text-shadow:
      4px 4px 0 #000,
    -1px -1px 0 #000,  
      1px -1px 0 #000,
      -1px 1px 0 #000,
      1px 1px 0 #000;
}
#carousel-sub .carousel-caption p {
  font-size: 120%;
  font-family: 'Gowun Dodum';
  text-shadow:
      2px 2px 0 #000,
    -1px -1px 0 #000,  
      1px -1px 0 #000,
      -1px 1px 0 #000,
      1px 1px 0 #000;
}