@import "../../../css/Nav/nav.css";
@import "../../../css/Footer/footer.css";
@import "../../../css/Fonts/fontSizes.css";
body .cotenido {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffe4ea 0%, #f29caf 50%, #d56f86 100%);
}
body .cotenido > :nth-child(1) {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-image: url("../img/Vector.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: waveAnimation 9s infinite;
}
body .cotenido > :nth-child(1) img {
  width: 100%;
}
body .cotenido > :nth-child(2) {
  width: 90%;
  transition: 0.4s;
  transform: translateY(-5%);
  opacity: 0;
  background: white;
  margin: 0 auto;
  width: 90%;
  max-width: 1440px;
  border-radius: 25px;
  display: flex;
  place-content: center;
  align-items: center;
  margin-top: 2rem;
}
body .cotenido > :nth-child(2) > :nth-child(1) {
  width: 97.5%;
  margin: 0 auto;
  padding: 0.25% 0%;
}
body .cotenido .textLoadingAnimation {
  transition: 0.4s;
  transform: translateY(0%);
  opacity: 1;
}
body .cotenido footer {
  background: transparent;
  position: relative;
}

@keyframes waveAnimation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}/*# sourceMappingURL=styles.css.map */