.hn-holding-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  padding: 40px;
}

.hn-logo-outer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hn-logo-outer img {
  max-width: 450px;
  width: 100%;
}

.hn-holding-socials-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hn-holding-socials-inner a {
  display: block;
  width: 40px;
}

.hn-holding-message,
.hn-holding-blurb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hn-holding-message {
  max-width: 850px;
}

.hn-holding-message h1,
.hn-holding-message p {
  text-align: center;
}

.hn-holding-message h1 {
  font-size: 2.5em;
  font-weight: 500;
  color: #373737;
  line-height: 1em;
}

.hn-holding-message p {
  font-size: 1.143em;
  font-weight: 400;
  color: #373737;
  line-height: 1.4em;
}

.hn-holding-btn-group {
  display: flex;
  gap: 50px;
  width: 100%;
  max-width: 600px;
}

.hn-holding-btn {
  flex: 1 0 0;
}

.hn-holding-btn a {
  text-align: center;
  font-size: 1.143em;
  display: block;
  padding: 1em 2em;
  background-color: #004378;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hn-holding-btn a:hover {
  background-color: #555555;
}