@import url("./modules/modal.css");
@import url("./modules/footer.css");
@import url("./modules/header.css");

* {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;

  --blue: #009cff;
  --orange: #ff6300;
  --normal_width: 800px;
}
.light {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 300;
}
.medium {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
}
.bold {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
}
.extra_bold {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 900;
}

.orange {
  color: #ff6300;
}
.blue {
  color: #009cff;
}

.error {
  color: red;
}

.hidden {
  display: none !important;
}

body {
  position: relative;

  max-width: 100vw;
  min-height: calc(var(--vh) * 100);
}

.main_with_header {
  margin-top: 100px;
}

.blank_top {
  width: 100%;
  height: 120px;
}

.container {
  box-sizing: border-box;
  max-width: 1080px;
}

.container-lg {
  box-sizing: border-box;
  max-width: 1240px;
}

.subtitle {
  margin-top: 40px;

  font-size: 30px;
}

.alert-debug {
  color: black;
  background-color: white;

  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;

  border-color: #eed3d7;
}

@media screen and (max-width: 1200px) {
  .blank_top {
    height: 60px;
  }

  .subtitle {
    font-size: 25px;
  }
}
