.dino { 
    filter:hue-rotate(90deg) drop-shadow(5px 0px 2px black);
    -webkit-filter:hue-rotate(90deg) drop-shadow(5px 0px 2px black);
    margin:20px;
}
.sea {
  background:linear-gradient(120deg, blue, white); 
  width:600px; 
  height:400px; 
  background-clip:content-box;
  margin:20px;
}
.foot {
  border-image:url(images/tic-tac-toe.png) 48 round;
  border:solid 50px transparent;  
  border-width: 40px;
  filter:grayscale(100%);
  -webkit-filter:grayscale(100%);

}
.peng {
  border-radius:50%;
  width:450px;
  height:300px;
  border:1px solid;
  -webkit-filter:sepia(100%);
  background-image:url(images/penguins.jpg);
  margin:20px;
}

.butterfly {
  -webkit-filter:invert(100%) opacity(70%);  
  filter:invert(100%) opacity(75%);
  border:5px solid;
  border-radius:20px 5px 20px 5px / 0px 5px 0px 5px;
  margin:20px;
}
.stage {
  -webkit-filter:blur(3px);
  filter:blur(3px);
  margin:20px;
}

div p {
  position:relative;
   width:200px;
  height:200px;
  top: -250px;
  left: 100px;
	font-family: arial;
	font-size: 40px;
	text-align:center;
	color: white;
	-webkit-filter:drop-shadow(1px 1px 1px black);
	filter:drop-shadow(1px 1px 1px black);
	}