/* FULL SITE = JYOTI GREEN */
html, body {
  height: 100%;
  margin: 0;
  background-color: #728C69; /* Jyoti green */
  color: #ffffff;            /* ALL text white */
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* CENTER THE WHOLE PAGE */
.center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STACK CONTENT VERTICALLY + CENTER */
.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* LOGO AREA – keeps correct shape */
.logoArea {
  width: 200px;      /* controls visual size */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 180px;  /* smaller but not squashed */
  width: auto;
  height: auto;
  object-fit: contain;
}

/* TEXT */
.headline {
  margin: 0;
  font-size: 44px;
  color: #ffffff;
}

.sub {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
}

.email {
  font-size: 15px;
  color: #ffffff;
}

.footer {
  margin-top: 10px;
  font-size: 12px;
  color: #ffffff;
}