@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 7th Edition
   Tutorial 4
   Review Assignment
   
   Individuals Design Style Sheet at Tree and Book
   Author: Corey Burgos
   Date:   9/10/2022
   
   Filename: tb_visual4.css

*/


/* Transformation Styles */
article {
  perspective: 800px;
}

figure#figure1 {
  transform: translateZ(-120px);
}

figure#figure2 {
  transform: translateY(-20px) rotateY(50deg);
}

figure#figure3 {
  transform: translate(-30px) rotateY(-50deg);
}


/* Filter Styles */
article figure#figure1 {
  -webkit-filter: saturate(1.3);
}

article figure#figure2 {
  -webkit-filter: brightness(0.8);
}

article figure#figure3 {
  -webkit-filter: hue-rotate(170deg),
          saturate(3),
          brightness(1.5);
}

