* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background: #1d0061 url("../img/background-mage.jpg") center / cover no-repeat fixed;
  font-family: "Cencora-Gilroy", sans-serif;
  font-weight: 500;
  color: #3B3B3B;
}

.maintenance-card {
  width: min(640px, 100%);
  padding: 48px 24px 46px;
  border-radius: 4px;
  background: #fff;
}

.maintenance-icon {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 15px;
}

h1 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  color: #1E1E1E;
}

.message {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
  color: #1E1E1E;
}

.message p {
  margin: 0;
}

.message p + p {
  margin-top: 17px;
}

.order-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding: 17px 16px;
  border: 1px solid #EEEDFE;
  border-radius: 4px;
  background: #EEEDFE;
  font-size: 14px;
  line-height: 1.45;
}

.order-section[hidden] {
  display: none;
}

.order-section p {
  flex: 1;
  margin: 0;
}

.order-link {
  display: inline-flex;
  flex: 0 0 151px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 33px;
  border: 2px solid #461E96;
  border-radius: 4px;
  color: #461E96;
  background: #EEEDFE;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.order-link:focus-visible {
  outline: 3px solid #ba9cff;
  outline-offset: 3px;
}

.order-link img {
  width: 20px;
  height: 20px;
}

.support {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 22px;
  margin-top: 49px;
  padding-top: 17px;
  border-top: 1px solid #E8E8E8;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.support--centered {
  grid-template-columns: 1fr;
}

.order-section[hidden] + .support {
  margin-top: 49px;
}

.support section[hidden] {
  display: none;
}

.support h2 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0;
}

.support p {
  margin: 0;
}

.phone-number {
  white-space: nowrap;
}

.support a {
  color: #3C289B;
  text-decoration: none;
}

@media (max-width: 620px) {
  body {
    display: block;
    padding: 20px 14px;
    background-attachment: scroll;
  }

  .maintenance-card {
    margin: auto;
    padding: 32px 20px;
  }

  .maintenance-icon {
    width: 80px;
    height: 80px;
  }

  h1 {
    font-size: 25px;
  }

  .message {
    font-size: 15px;
  }

  .order-section {
    align-items: stretch;
    flex-direction: column;
    margin-top: 32px;
  }

  .order-link {
    flex-basis: auto;
    width: 100%;
  }
}
