/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: linear-gradient(135deg, #c7b8ea, #a4d0e1, #e8c1c5);
  background-size: 400% 400%;
  animation: dreamshift 15s ease infinite;
  font-family: 'Satisfy', cursive;
}


.center-text {
  text-align: center;
}

.my-gif {
  width: 300px;      /* resize the gif */
  height: auto;      /* keeps proportions */
  display: block;    /* removes weird spacing */
  margin: 0 auto;    /* centers horizontally */
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.float {
  animation: float 4s ease-in-out infinite;
}
