@charset "UTF-8";
/* CSS Document */

* {margin: 0; padding: 0;}
body {background: linear-gradient(270deg, aliceblue, lavender, lightcyan);
	background-size: 600% 600%;
	animation: prueba 10s ease infinite;
}
@keyframes prueba {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.light {background-color: lavenderblush; width: 800px; margin: auto; margin-top: 26px; padding: 26px; text-align: center;}
h1 {font-family: "Rammetto One", sans-serif; font-weight: 400; font-style: normal; color: powderblue;}

