@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #00a884, #0078ff);
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
  color: #fff;
  text-align: center;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  padding: 20px;
  max-width: 700px;
  animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  width: 130px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

p {
  font-size: 1.05rem;
  color: #e8e8e8;
  margin-bottom: 10px;
}

strong {
  color: #FFD700;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.socials a {
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.socials a:hover {
  color: #FFD700;
  transform: scale(1.2);
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #f2f2f2;
  opacity: 0.8;
}
