*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #0138CB;
  font-family: "Courier New";
  position: relative;
  height: 100vh;
}

.maintenance_box {
  width: 100%;
  max-width: 740px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.maintenance_box img {
  width: 100%;
  display: block;
  margin: 0 auto 50px;
}
.maintenance_box h2 {
  color: #fff;
  font-size: 24px;
  font-weight: normal;
}
.maintenance_box h2 strong {
  font-weight: bold;
}

@media only screen and (max-height: 790px) {
  .maintenance_box {
    max-width: 600px;
  }
  .maintenance_box h2 {
    font-size: 19px;
  }
}
@media only screen and (max-width: 744px) {
  body {
    height: 100dvh;
  }
  .maintenance_box {
    max-width: 280px;
  }
  .maintenance_box img {
    margin-bottom: 30px;
  }
  .maintenance_box h2 {
    font-size: 22px;
  }
}/*# sourceMappingURL=main.css.map */