body {
	background-image:url('background.jpg');
	}
	
.content {
	width: 800px;
	height: 350px;
	position: absolute;
	left: 50%;
	top: 50%; 
	margin-left: -450px;
	margin-top: -175px;
	padding: 10px;
	font-family: calibri;
	text-align: center;
	background: white;
	border: red 2px solid;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px; /* future proofing */
	-khtml-border-radius: 30px; /* for old Konqueror browsers */
	}
	
.content h1 {
	color: red;
	}
	
.content h2 {
	color: blue;
	}

.content p {
	color: #333333;
	}
	
.content a {
	text-decoration: none; 
	background-color: #E5E5E5; 
	color: #B94A48; 
	padding: 10px; 
	border: 1px solid #333333;
	border-radius: 5px; 
	}
	
.content a:hover { 
	background-color: #B94A48; 
	color: #FFFFFF; 
	text-decoration: none; 
	}	
	
	