/* start of code */

body {
  background-image: url("fallbackground.jpg");
  background-size: cover;          /* Forces the image to fill the screen */
  background-position: fill;     /* Fills the image */
  background-repeat: no-repeat;    /* Prevents the image from duplicating */
  background-attachment: fixed;    /* Keeps background static while scrolling */
}

body {
  background-image: url("https://www.charlottefabrics.com/wp-content/uploads/2023/12/M298-Wheat-Gingham_Large-v1.jpg");
  background-size: background-repeat;          /* Forces the image to repeat */
  background-position: repeat;     /* Repeats the image */
  background-repeat: repeat;    /* Prevents the image from duplicating */
  background-attachment: fixed;    /* Keeps background static while scrolling */
}