h1#modelTitle {
  font-family: "Gowun Batang", serif;
  font-weight: 700;
  text-align: center;
  font-size: 20pt;
  margin-top: 20pt;
  padding: 0;
  text-shadow: 1px 2px bl;
}

div#container-top {
  display: none;
  position: absolute;
  z-index: 999;
  top: 0;          /* 상단에 배치 */
  left: 50%;       /* 수평 중앙을 기준으로 */
  transform: translateX(-50%); /* 가로 중앙 정렬 */
  width: 100%;     /* 화면 전체 너비 */
  height: 100px;
}
div#container-bottom {
  display: none;
  position: absolute;
  z-index: 999;
  bottom: 0;       /* 하단에 배치 */
  left: 50%;       /* 수평 중앙을 기준으로 */
  transform: translateX(-50%); /* 가로 중앙 정렬 */
  width: 100%;     /* 화면 전체 너비 */
  height: 180px;
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
  min-width: 340px;
  padding: 5rem 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
}
.tabs {
  background: #ffe5e2;
  border-radius: 0.5rem;
  grid-template-rows: auto 1fr;
}
.btn-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.button:nth-child(1) {
  border-top-left-radius: 0.5rem;
}
.button:nth-child(3) {
  border-top-right-radius: 0.5rem;
}
.button {
  border: none;
  font-size: 10pt;
  background: #b6c9f0;
  color: #003f89;
  cursor: pointer;
  transition: all 0.3slinear;
  letter-spacing: 0.25rem;
}
.button:hover:not(.live) {
  background: #e93b81;
  color: white;
}
.tabs-content {
  padding: 2rem 1.5rem;
  max-height: 90px; /*적을수록 스크롤영역이 길어진다.*/
  overflow-y: auto;  /* 내용이 넘칠 경우 세로 스크롤 */
}
/* hide content */
.content {
  display: none;
  color: gray;
}
.button {
  background: #898d8e;
  color:white;
}
.button.live {
  background: #ffe5e2;
  color: black;
}
.content.live {
  display: block;
}
.content p {
  letter-spacing: -1pt;
  line-height: 16pt;
}
