body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffb56b; /* darker orange */
  font-family: 'Poppins', sans-serif;
  color: #3b0a45; /* deep purple */
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #5a2970;
}

.button {
  background-color: #3b0a45;
  color: #fff7ed;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.button:hover {
  transform: scale(1.05);
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #4b2669;
}
