@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

:root {
  --bg-top: #eacad7;
  --bg-bottom: #eacad7;
  --text-offwhite: #f3477b;
  --accent: #ea1655;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 200vh; /* keeps page scrollable */
  background: linear-gradient(180deg, var(--bg-top), var(--bg-top));
  font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.center-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
  text-align: center;
}

.title {
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4rem);
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 18px rgba(0,0,0,0.06);
  position: relative;
}

/* soft accent bar under the title for extra cuteness */
.title::after {
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin: 12px auto 0;
  opacity: 0.95;
}

.subtitle {
  font-weight: 300;
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  margin-top: 0.6rem;
  opacity: 0.98;
}

/* small responsive tweaks for very narrow screens */
@media (max-width: 380px) {
  .title { font-size: 1.8rem; }
  .subtitle { font-size: 1rem; }
}
