:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #00005a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  background: linear-gradient(180deg, #0041bf 0%, #00005a 100%);
}

.maintenance {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  text-align: center;
}

.brand {
  display: block;
  width: min(250px, 58vw);
  height: auto;
  margin: clamp(64px, 11vh, 100px) auto 0;
}

.message {
  width: min(1160px, calc(100% - 40px));
  margin: clamp(116px, 13vh, 120px) auto 0;
}

.status-icon {
  display: block;
  width: 56px;
  height: auto;
  margin: 0 auto;
}

h1 {
  margin: 56px 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 75px 0 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.25px;
}

@media (max-width: 640px) {
  .brand {
    margin-top: 56px;
  }

  .message {
    margin-top: 90px;
  }

  h1 {
    margin-top: 40px;
    font-size: 24px;
  }

  p {
    margin-top: 48px;
    font-size: 18px;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .brand {
    margin-top: 28px;
  }

  .message {
    margin-top: 48px;
  }

  h1 {
    margin-top: 28px;
  }

  p {
    margin-top: 30px;
  }
}
