.header {
  height: auto;
}

.error {
  background-color: #fff;
  min-height: calc(90vh - var(--header-height) );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
}

.error__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error__title {
  margin-bottom: 1em;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.error__title-break {
  display: none;
}

.error__text {
  margin-bottom: 5.625rem;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.78;
}

@media screen and (max-width: 768px) {
  .error__title-break {
    display: block;
  }
  
  .error__text-break {
    display: none;
  }
}

.maintenance {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.maintenance__inner {
  display: flex;
  flex-direction: column;
}

.maintenance__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6em;
  text-align: center;
}

.maintenance__schedule {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.875;
  background-color: #084a95;
  color: #fff;
  text-align: center;
  padding: 0.6em 2em;
  border-radius: 8px;
  margin-bottom: 1.5em;
}


.maintenance__text {
  font-size: 1.2rem;
  text-align: center;
  color: #666;
}

@media screen and (max-width: 480px) {
  .maintenance__title {
    font-size: 1.6rem;
  }

  .maintenance__schedule {
    font-size: 1.2rem;
    padding: 0.6em;
  }

  .maintenance__text {
    font-size: 1rem;
  }

}

