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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #000000;
}

.center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem; /* 👈 controla qué tan cerca queda el texto */
}

p {
  margin-top: 0;         /* 👈 elimina separación extra */
  font-size: 0.95rem;
  font-weight: 400;
  color: #555555;
  letter-spacing: 0.05em;
}

