body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, #2f2f2f, #5a5a5a);
  font-family: 'Poppins', sans-serif;
  color: #fff;
  transition: background 1s ease;
}

.container {
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 0.5em;
}

p {
  font-size: 1.2em;
  color: #f0f0f0;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
