@charset "UTF-8";
/* container */
.container {
  position: relative;
  margin: 10vh auto;
  width: 1280px;
  height: 1000px;
  max-height: 100%;
  max-width: 95%;
  background-color: rgb(250, 250, 255);
  border-radius: 5px;
  border: 2px solid black;
}

/* header */
.header {
  position: absolute;
  display: flex;
  align-items: center;
  top: 20px;
  left: 30px;
  width: 100%;
  height: 50px;
  color: white;
  /* left 30px, 좌우 대칭을 위한 right 30px */
  width: calc(100% - 30px - 30px);
  padding-left: 10px;
  background-color: rgb(43, 43, 43);
}
.header .header_wrap {
  position: relative;
  left: 10px;
}
.header .header_wrap .header_title::before {
  position: absolute;
  left: -10px;
  content: " ";
  width: 3px;
  height: 22px;
  background-color: white;
}
.header .header_wrap .header_title {
  letter-spacing: 1px;
  font-family: "Jua";
  font-size: 1.5rem;
  font-weight: 700;
}/*# sourceMappingURL=header.css.map */