/* 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 { font-family: sans-serif; /* how to change the font */
  background-image: url(https://neocities.org/site_thumbnails/10/29/kezzuz/flat,750x,075,f-pad,750x1000,f8f8f8.jpg.210x158.webp);
/* Make the background image a specific size */
  background-size: cover;
  
  /* Center the background image */
  background-position: center;
  
  /* Prevent the image from repeating */
  background-repeat: no-repeat;
}