﻿@charset "utf-8";
/* CSS Document */

#splash {
	width: 100%;
	float: left;
	height: 900px;
	background-image: url(../images/splash-page.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#enter {
	width: 90%;
	float: left;
	margin-top: 50px;
	margin-left: 5%;
	margin-right: 5%;
	text-align: right;	
}

#enter a {
	color: #fff;
	font-family: 'Bree Serif', serif;
	font-size: 18px;	
	text-decoration: none;
}


/* RESPONSIVE WEBSITE */
/* Apple Ipad 1024×768 */
@media all and (max-width: 1024px) {
#splash {
	width: 100%;
	height: 768px;
}
}


/* Apple Iphone4S 960×640 */
@media all and (max-width: 960px) {
#splash {
	height: 640px;
}
}


/* Samsung 800×480 */
@media all and (max-width: 800px) {
#splash {
	height: 480px;
}
}


/* Blackberry 640×480 */
@media all and (max-width: 640px) {
#splash {
	height: 480px;
}
}


/* Apple Iphone3G 480×320 */
@media all and (max-width: 480px) {
#splash {
	height: 320px;
}
}