html, body {
	margin: 0;
	padding: 0;
}
body {
	background-color: rgba(255,255,255,1.0);
}
span {
	display: none;
}
a {
	color: rgba(103,197,176,1.0);
}
a:hover {
	color: rgba(80,157,141,1.0);
}
#title {
	width: 300px;
	height: 165px;
	background-image: url(/assets/images/logo.png);
	background-size: cover;
	display: block;
	position: absolute;
	top: 25%;
	left: 50%;
	margin: 0 0 0 -150px;
}
@media (min-width: 600px) and (max-width: 799px) { 
	#title {
		width: 500px;
		height: 275px;
		top: 20%;
		left: 50%;
		margin: 0 0 0 -250px;
	}
}
@media (min-width: 800px) { 
	#title {
		width: 650px;
		height: 358px;
		top: 15%;
		left: 50%;
		margin: 0 0 0 -325px;
	}
}

#email {
	width: 100%;
	height: 120px;
	font-size: 18px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-align: center;
	display: block;
	position: absolute;
	bottom: 0;
	line-height: 31px;
	background-color: rgba(255,255,255,0.5);
}