@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, #ffb6b9, #fae3d9, #bbded6, #8ac6d1);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  text-align: center;
  color: #333;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  padding: 40px 60px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo img {
  width: 160px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

h1 {
  font-size: 3rem;
  color: #2b2b2b;
  margin-top: 20px;
  text-shadow: 0 0 10px rgba(255, 99, 71, 0.5), 0 0 20px rgba(255, 99, 71, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #ff4b5c, 0 0 20px #ff758f; }
  to { text-shadow: 0 0 20px #ff4b5c, 0 0 40px #ff758f; }
}

p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 0.5px;
}
