body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #ffd6e0, #fff6f6);
  color: #333;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.container {
  padding: 20px;
  max-width: 600px;
  margin: auto;
  animation: fadeIn 1.5s ease;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #e91e63;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  background: #e91e63;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #c2185b;
}

img {
  max-width: 250px;
  border-radius: 12px;
  margin-top: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
