/* 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 {
  
  /* 2. Sets the background to loop seamlessly without cropping */
  background-image: url('background.png'); 
  background-size: auto;       /* Stops the image from zooming or stretching */
  background-repeat: repeat;   /* Tiles the pattern cleanly across the screen */
  background-attachment: scroll; /* Lets the background move naturally when you scroll */
  
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", "Comic Neue", "sans-serif";
}