@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 4
   Review Assignment
   
   Individuals Design Style Sheet at Tree and Book
   Author: Andrew Hainline
   Date:   10/8/2025
   
   Filename: tb_visual4.css

*/


/* Transformation Styles */

article {
	Perspective: 800px;
}

#figure1 { transform: translateZ(-120px); }

#figure2 { transform: translateY(-20px) rotateY(50deg); }

#figure3 { transform: translateY(-30px) rotateY(-50deg); }

/* Filter Styles */

#figure1 {
  filter: saturate(1.3);
}

#figure2 {
	brightness: (0.8);
	contrast:(1.5);
}

#figure3 {
	filter: hue-rotate(170deg) saturate(3) brightness(1.5);
}
	