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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff7ec;
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(20, 10, 30, 0.35) 0%,
      rgba(20, 10, 30, 0.15) 45%,
      rgba(10, 5, 15, 0.6) 100%
    ),
    url("sunset.jpeg");
  background-size: 110% auto;
  background-position: center;
  animation: drift 30s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes drift {
  0% {
    background-size: 110% auto;
    background-position: center 40%;
  }
  100% {
    background-size: 120% auto;
    background-position: center 55%;
  }
}

.wrap {
  text-align: center;
  padding: 2rem;
  transform: translateY(-28vh);
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.status {
  margin-top: 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #fff7ec;
  font-size: 1.1rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
}
