:root {
  --blue: #07445c;
  --coral: #f47655;
  --text: #25343a;
  --muted: #6c777c;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--coral);
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.content {
  width: min(100%, 920px);
  text-align: center;
}

.logo {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto 56px;
}

.status {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.text {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 42px;
  color: var(--blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 560px) {
  .page {
    padding: 24px;
  }

  .content {
    text-align: left;
  }

  .logo {
    margin: 0 0 44px;
  }

  .text {
    margin-left: 0;
  }

  .contact {
    justify-content: flex-start;
  }
}
