body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  height: 100vh;
  background: url('https://cdn.indexa.pe/images/fondo1.jpg?w=2000') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;

}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -2;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


.container {
  text-align: center;
  color: #fff;
  max-width: 600px;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


h1 {
  font-size: 3em;
  margin-bottom: 1.3em;
  animation: float 2s infinite ease-in-out, fadeIn 8s forwards;

  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.animated-text {
  animation: float 4s infinite ease-in-out, fadeIn 2s forwards;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

p {
  font-size: 1.4em;
  margin-top: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.social-icons {
  margin-top: 20px;
  display: flex;
  transition: transform 0.3s ease-out, color 0.3s ease-out;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  margin: 0 10px;
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1.5em; /* Ajusta el tamaño según tus preferencias */
  transition: color 0.3s ease-in-out;
}


/* Agrega este bloque para hacer aún más pequeños los iconos en dispositivos móviles */
@media only screen and (max-width: 600px) {
  .social-icons a {
    font-size: 1em; /* Tamaño más pequeño para dispositivos móviles */
  }
}
.social-icons a:hover {
  animation: float 2s infinite ease-in-out, 8s forwards;
  color: #fff;
}

.footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 9px;
}
.footer img {
  width: 80px; /* Puedes ajustar el valor según tus preferencias */
  height: auto; /* Esto asegura que la altura se ajuste proporcionalmente al ancho */
}
