/* 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-color: #98bfeb;
  color: black;
  font-family: Verdana;
  
  
}
body {
  background-image: url('https://files.catbox.moe/muq1aj.jpg'); /* Use a tileable/repeating image */
  background-repeat: repeat;
  /* Set the animation name, duration (20s), timing (linear), and loop (infinite) */
  animation: slide 20s linear infinite;
}

@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    /* Change these numbers to control direction/speed */
    background-position: 500px 500px; 
  }
}