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

.error-page {
  background-color: #03a9f4;
  color: #424242;
  height: 100vh;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 100vw;
  padding: 0 10px;
  gap: 20px;
}
.error-page .py-card {
  width: 100%;
  max-width: 640px;
}
.error-page .py-card h1, .error-page .py-card h2 {
  margin: 0px;
}
.error-page .py-card h1 {
  color: var(--py-primary-color);
  font-size: 3em;
}
.error-page .py-card h2 {
  font-size: 2em;
  font-weight: 100;
  padding: 10px 0px 15px;
}
.error-page .py-card .errMsg {
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  margin-bottom: 10px;
  font-size: 1em;
}
.error-page .error-trace {
  width: 100%;
}/*# sourceMappingURL=error.css.map */