* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(90deg, #128A64, #00205C);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.logo {
  width: 200px;
  max-width: 80%;
  margin-bottom: 30px;
  animation: logoAppear 1.5s ease-out;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  animation: textFadeIn 2.2s ease-in-out;
}

p {
  font-size: 1.1rem;
  animation: textFadeIn 2.5s ease-in-out;
}

.pulse {
  margin-top: 20px;
  font-size: 1rem;
  animation: pulse 1.5s infinite;
  opacity: 0.8;
}

.socials {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: textFadeIn 2.8s ease-in-out;
}

.socials a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
  color: #ffd700;
}

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

@keyframes logoAppear {
  from { opacity: 0; transform: scale(0.8) }
  to { opacity: 1; transform: scale(1) }
}

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

@keyframes pulse {
  0% { opacity: 0.6 }
  50% { opacity: 1 }
  100% { opacity: 0.6 }
}
