body {
  padding: 20px;
      font-family: "Noto Sans KR", sans-serif;
     text-align: center;
  justify-content: center; /* 가로 중앙 */
  align-items: center;     /* 세로 중앙 */
  height: 100vh;           /* 화면 전체 높이 */
  word-break: keep-all;
  line-height: 26px;

}

h1 {
  font-size: 30px;   /* 크게 강조 */
  font-weight: 700;    /* 두껍게 */
  text-align: center;  /* 가운데 정렬 (옵션) */
  margin-bottom: 0.5em;
}

h2 {
  font-size: 12px;  
  font-weight: 400;    /* 보통 두께 */
  color: #555;         /* 조금 연한 색 */
  text-align: center;  /* 설명도 중앙 정렬 (옵션) */
  margin-bottom: 1em;
}

h3 {
  font-size: 12px;   
  font-weight: 400;    /* 보통 두께 */
  color: #555;         /* 조금 연한 색 */
  text-align: center;  /* 설명도 중앙 정렬 (옵션) */
  margin-bottom: 1em;
}

.divider {
  border: none;             /* 기본 브라우저 선 제거 */
  border-top: 1px solid rgba(0, 0, 0, 0.4);

}