html, body {
  margin: 0;
  height: 100%;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #0e3b5c;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
  text-align: center;
}

.logo {
  width: clamp(220px, 40vw, 360px);
  height: auto;
  margin: 0 auto 2rem;
}

.message {
  max-width: 560px;
}

.message h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0.25rem 0 0.75rem;
  font-weight: 600;
  color: #0e3b5c;
}

.message p {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #5a7a90;
  margin: 0.25rem 0;
}

.divider {
  width: 40px;
  height: 2px;
  background: #24b7e3;
  margin: 1.25rem auto;
  border-radius: 2px;
}
