@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body .contenedor {
  width: 100vw;
  min-height: 100vh;
  padding: 1rem;
  height: fit-content;
  background-color: white;
  font-family: "Poppins";
  text-align: center;
  color: #ad96c7;
}
body .contenedor .isotipo-giro {
  width: 15rem;
  animation: girar 6s linear infinite;
}
@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body .contenedor h1 {
  font-weight: 600;
}
body .contenedor p {
  font-size: 0.8rem;
}
body .contenedor a {
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  background-color: #ad96c7;
  color: white;
  text-decoration: none;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s ease;
}
body .contenedor a:hover {
  background-color: white;
  border: 1px solid #ad96c7;
  color: #ad96c7;
  transform: translateY(-2px);
}

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