* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #020814;
}

body {
  overflow-x: hidden;
}

.maintenance-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #020814;
}

.maintenance-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1536px;
}

/* On very narrow screens, keep the complete design visible
   instead of cropping important text or graphics. */
@media (max-width: 600px) {
  .maintenance-page {
    min-height: 100dvh;
    align-items: flex-start;
    overflow-x: auto;
  }

  .maintenance-image {
    width: 100%;
    min-width: 900px;
    max-width: none;
  }
}
