@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/source-sans-pro-400.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/source-sans-pro-700.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: #347fb6;
  font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .72), transparent 42%, rgba(0, 0, 0, .035) 82%),
    #f1f3f4;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  opacity: .13;
  pointer-events: none;
  background: url("/assets/concrete-tile.png") repeat;
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(3.4rem, 7vw, 6rem) 1.5rem clamp(2.1rem, 4vw, 3rem);
  text-align: center;
}

.brand {
  display: flex;
  justify-content: center;
}

.brand img {
  width: min(560px, 58vw);
  height: auto;
}

.message {
  align-self: center;
  margin-top: clamp(2rem, 8vh, 5rem);
  transform: translateY(5vh);
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: .03em;
}

.message p {
  margin: .35rem 0 0;
  color: #347fb6;
  font-size: clamp(.95rem, 1.25vw, 1.25rem);
  font-weight: 700;
  letter-spacing: .01em;
}

.footer p {
  margin: 0;
  color: #347fb6;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
}

@media (max-width: 700px) {
  .page {
    padding-top: 3rem;
  }

  .brand img {
    width: min(330px, 78vw);
  }

  .message {
    transform: none;
  }
}
