/*Homework 6 adding 2D and 3D transformation and color transition
Author: Jade Holt
Date: April 15,2020
*/
/*2D tansformation for the two element heading 1 and heading 2*/
.one{
	font-weight:bold;
	color:rgb(120,150,50);/*green*/
	transform:scaleX(.8) scaleY(2);
}

.eve{
	font-weight:normal;
	color:rgb(120,150,50);/*green*/
	transform:scaleX(.8) scaleY(2);
}
/*3D transformation for the for the image*/
img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	border:solid 3px rgb(0,0,0);
	transform-style: flat;
	
}
/*transition color for the paragraphs*/
p{
	transition: background-color 0.5s ease-out;
	background-color:rgb(120,150,50);/*green*/
	}
p:hover{
	background-color:rgb(100,165,200);/*blue*/
}
body{
	background-color:rgb(0,0,0);/*black*/
}