body
{
  color: black;
  text-align: center;
}
h1, h2 {
  font-size: 20px
}

figure
{
 display: inline-block; 
}

footer
{
  padding: 50px;
}
  
.highSaturation
  {
  filter: contrast(120%) saturate(190%);
}

.dropShadow
{
  filter: drop-shadow(15px 15px 20px rebeccapurple);
}
.Sepia
{
  filter: Sepia(50%)
}
.grayscale
    {
      filter: grayscale(110%);
  }
.Hue-rotated
{
  filter: hue-rotate(30deg);
}
.Inverted
{
  filter: invert(81%)
}
.highSaturationandDropShadow
{
  filter: contrast(150%) saturate(200%) drop-shadow( 25px 25px 25px black) invert(20%) hue-rotate(27deg) sepia(20%);
}
  
    