body {
  background-color: #f9f9f9;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2 {
  color: #ff6600;
}

footer {
  background-color: #222;
  color: white;
  padding: 20px;
  text-align: center;
}
footer .social-icons img {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}
footer .social-icons img:hover {
  transform: scale(1.2);
}

.img-chica {
  max-width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}
.fade-in {
  animation: fadeIn 1s ease-in;
}

.slide-left {
  animation: slideLeft 1s ease-out;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-animado {
  animation: fadeInUp 1s ease-out;
  animation-delay: 1s;
  animation-fill-mode: both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-enter {
  animation: pageFadeIn 0.8s ease-out;
}

/*# sourceMappingURL=styles.css.map */
