html,
body,
h1,
p {
  color: rgba(255, 255, 255, 0.95);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

.maintenance-page-wrapper {
  align-items: center;
  background: linear-gradient(to top, #18d2b6, #27dc87);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .maintenance-page-wrapper {
    overflow: visible;
  }
}

.maintenance-page-wrapper img {
  height: auto;
  margin-top: -40px;
  max-width: 300px;
}

@media only screen and (max-width: 767px) {
  .maintenance-page-wrapper img {
    margin-top: 0;
    max-width: 250px;
  }
}

.maintenance-page-wrapper p.message {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 24px;
  line-height: 1.4;
  margin: 40px 0;
  max-width: 500px;
  padding-bottom: 40px;
  text-align: center;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.09);
}

.maintenance-page-wrapper p.subtext {
  margin-bottom: 20px;
}

.maintenance-page-wrapper p {
  border-bottom: none;
  font-size: 18px;
  line-height: 1.4;
  max-width: 300px;
  text-align: center;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.09);
}

@media only screen and (max-width: 767px) {
  .maintenance-page-wrapper p.message {
    font-size: 18px;
    max-width: 300px;
  }

  .maintenance-page-wrapper p {
    font-size: 14px;
    max-width: 300px;
  }
}

.maintenance-page-wrapper .maintenance-graphic {
  bottom: -3px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
  width: 900px;
}

.maintenance-page-wrapper .maintenance-graphic.left {
  left: -120px;
}

.maintenance-page-wrapper .maintenance-graphic.right {
  bottom: -3px;
  right: -120px;
  transform: scaleX(-1);
}

.maintenance-page-wrapper .maintenance-graphic img {
  height: 100%;
  max-width: 100%;
  width: 100%;
}

@media only screen and (max-width: 1700px) {
  .maintenance-page-wrapper .maintenance-graphic img {
    width: 700px;
  }

  .maintenance-page-wrapper .maintenance-graphic.left {
    left: -90px;
  }

  .maintenance-page-wrapper .maintenance-graphic.right {
    right: -90px;
  }
}

@media only screen and (max-width: 991px), (max-height: 750px) {
  .maintenance-page-wrapper .maintenance-graphic {
    display: none;
  }
}