﻿body { 
	background: url(background.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height:100%;
}

#header {
	background-color: rgba(0, 200, 0, 0.5);
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:60px;
	padding-left: 60px;
	margin: 0px;
	border: 0px;
}
#header h1{
	font-family: 'Pacifico';
	font-size: 22px;
	display: inline-block;
	vertical-align: middle;
}

#msg {
	background-color: rgba(0, 200, 0, 0.5);
	font-family: 'Oswald';
	font-size: 22px;
	position:absolute;
	top:50%;
	left:50%;
	padding:15px;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	text-align: center;
}   

a:link {
	    text-decoration: none;
	    color:black;
    }

a:hover {
	    text-decoration: underline;
	    color: blue;
    }
