/* This stylesheet modifies the look of images in the gallery.
Students do not need to incorporate any of this,
because it is not part of the Exploration or Assignment.
However, if you want to learn more about filtering image files, refer to:
https://kinsta.com/blog/css-image-styling/#creating-transparent-images
*/ 

/* figure is the parent type */
figure:nth-of-type(2) img  { filter: brightness(150%); }
figure:nth-of-type(3) img  { transform: scaleX(-1); }
figure:nth-of-type(4) img  { filter: sepia(150%); }
figure:nth-of-type(5) img  { filter: contrast(250%); }
figure:nth-of-type(6) img  { filter: grayscale(150%); }
figure:nth-of-type(7) img  { filter: saturate(250%); }
figure:nth-of-type(8) img  { filter: blur(10px); }
figure:nth-of-type(9) img  { opacity: 0.5; }
