/* 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-image: url(https://i.pinimg.com/736x/33/85/fc/3385fc532f322032c54383a119c1ce2b.jpg); /* Replace with your image filename */
  background-repeat: repeat; /* Prevents the image from tiling */
  background-size: cover; /* Scales the image to cover the entire screen */
  background-attachment: fixed; /* Keeps the background in place while scrolling */

}