p 
{ 
	color: white; 
} 

table 
{
	color: white;
	width: 55%;
	height: 200px; 
    padding: 10px; 
    margin: 15px auto 15px auto;
	background-color: green; 
	border-radius: 55px;
	box-shadow: 15px 15px 50px grey; 
	-moz-box-shadow: 15px 15px 50px grey; 
	-webkit-box-shadow: 15px 15px 50px grey; 
}

div 
{ 
	position: 500px 100px; 
	width: 550px; 
	line-height: 50px; 
	margin: auto; 
	text-align: center; 
	background-color: gray; 
	border: 3px solid #000; 
	transform: rotate(50deg);
	-moz-transform: rotate(50deg); 
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);  
} 

body
{
	background-color: #bdbebd;
}