/* 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-color: white;
  color: black;
  font-family: Verdana;
}

body {
    /* Set the background image for the whole page */
    background-image: url('1b8ffa8be742e08bacbf36b7f05463f4.gif');
    /* Recommended additional properties for full-page backgrounds */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-size: cover;       /* Scales the image to cover the entire container */
    background-attachment: fixed; /* Keeps the image in place when scrolling */
    background-color: #cccccc;    /* A fallback color if the image doesn't load */
}