:root {
  --white: #ffffff;
  --blue: #1e3a8a;
  --blue-muted: #3b5998;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--blue);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.message {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 500;
}

.site-footer {
  padding: 1.5rem;
  text-align: center;
}

.footer-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--blue-muted);
}
