*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #054839;
  --text: #ffffff;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.75rem;
  padding: 2rem;
  text-align: center;
}

.brand {
  width: min(280px, 70vw);
  height: auto;
  display: block;
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
  max-width: 36rem;
}
