* {
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.loading {
  font-size: 24px;
  color: var(--primary-color);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  background: linear-gradient(
      to right,
      rgb(0, 27, 100),
      rgb(0, 66, 139),
      rgb(0, 89, 165),
      rgb(6, 106, 182),
      rgb(7, 107, 182),
      rgb(84, 117, 185)
    )
    no-repeat;
}

.header .logo {
  margin: 10px 0 0 60px;
  width: 375px;
  height: 80px;
  background-image: url("../images/logo_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.content .banner {
  margin: 0px auto;
  width: 450px;
  height: 410px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.content .maintenance-banner {
  background-image: url("../images/rb0.svg");
}

.content .error-banner1 {
  background-image: url("../images/rb1.svg");
}

.content .error-banner2 {
  background-image: url("../images/rb2.svg");
}

.content .content-txt {
  padding: 0 75px;
}

.content .primary-text {
  margin: 33px auto;
  font-size: 30px;
  font-weight: 700;
}

.content .secondary-text {
  font-size: 24px;
}

.content .secondary-text a {
  text-decoration: underline;
}

.content .secondary-text a > button {
  color: #367aff;
  width: 104px;
  height: 24px;
  line-height: 24px;
  margin: 0 10px;
}

.footer {
  margin: 40px auto;
  width: 100%;
  height: 150px;
  background-image: url("../images/foot.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .header .logo {
    margin: 40px 0 0 20px;
    width: 140px;
    height: 38px;
  }

  .content .banner {
    width: 225px;
    height: 205px;
  }

  .content .content-txt {
    padding: 0 36px;
  }

  .content .primary-text {
    margin: 16px auto;
    font-size: 15px;
  }
  .content .secondary-text {
    font-size: 12px;
    /* color: #666666; */
  }

  .content .secondary-text a > button {
    font-size: 12px;
    width: 80px;
    height: 17px;
    line-height: 17px;
    margin: 0 5px;
  }

  .footer {
    margin: 20px auto;
    height: 75px;
  }
}
