@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap");
* {
  font-family: "Noto Sans KR", "Nanum Gothic", "NanumBarunGothic", "나눔고딕", "Malgun Gothic", "맑은 고딕", "돋움", sans-serif, serif;
  box-sizing: border-box;
}

html, body {
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #f0f0f0;
  overflow: hidden;
  font-family: "Noto Sans KR", sans-serif;
  gap: 1rem;
}
.error-page h1 {
  text-align: center;
  font-size: 8rem;
  padding: 0;
  margin: 0;
}
.error-page h2 {
  text-align: center;
  font-size: 2rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
}
.error-page .message {
  text-align: center;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}

.comingsoon-page, .maintenance-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #f0f0f0;
  overflow: hidden;
  font-family: "Noto Sans KR", sans-serif;
  gap: 1rem;
}
.comingsoon-page h1, .maintenance-page h1 {
  text-align: center;
  font-size: 3rem;
  padding: 0;
  margin: 0;
}/*# sourceMappingURL=common.css.map */