body {
  background-image: url('_.jpeg');                      
  background-size: cover;        //stretches image to cover the whole page.
  background-repeat: no-repeat;  // prevents repeating/tiling.
  background-attachment: fixed; → keeps it still when scrolling.
}
