* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
  font-family: "Public Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
*/

body {
  background: #fff;
  color: #222;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  min-height: 90vh;
  display: grid;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  max-width: 560px;
}

.logo {
  max-width: 320px;
  width: 100%;
  height: auto;
}

hr {
  border: 1px solid black;
  width: 100%;
  margin-top: 50px;
}

.blurb {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #555;
}

.coming-soon {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #999;
}