/* 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://media.istockphoto.com/id/1077679226/photo/black-and-white-smoke.jpg?s=612x612&w=0&k=20&c=pbHhNc-ZFrZ-o-3-Q_hWItlMjoD6t5Xh4H0X-P4gJEo=');

    /* don't use all of these at once! */

    background-repeat:no-repeat; /* stop repeat */
    background-repeat:repeat; /* start repeat */
    background-repeat:repeat-y; /* repeat up and down */
    background-repeat:repeat-x; /* repeat left and right */
}
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}