html
{
	width: 100%;
	height: 100%;
	margin: 0px;
	background: url(../img/background.jpg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
	
body
{
	width: 100%;
	height: 100%;
	margin: 0px;
	float: left;
	font-family: Candara;
}

#welcome
{
	position: absolute;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	font-size: 2em;
	color: #000;
	background: rgba(255,255,255,0.7);
}

#label
{
	position: relative;
	text-align: center;
	font-size: 3em;
	color: #FFF;
	text-decoration: none;
	top: 50%;
}

#footer
{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: absolute;
	height: 30px;
	width: 100%;
	padding: 5px;
	bottom: 0;
	background: rgba(255,255,255,0.7);
}

#leftBy
{
	width: 25%;
	text-align: left;
	float: left;
}

#designBy
{
	width: 50%;
	text-align: center;
	float: left;
}

#rightBy
{
	text-align: right;
	width: 25%;
	float: right;
}

#aircraft
{
	display: block;
	position: relative;
	float: left;
	text-decoration: none;
	width: 50%;
	height: 100%;
	background: rgba(255,255,255,0.7);
}

#aircraft:hover
{
	background: rgba(255,255,255,0);
}

#consulting
{
	display: block;
	position: relative;
	float: left;
	text-decoration: none;
	width: 50%;
	height: 100%;
	background: rgba(255,255,255,0.7);
}

#consulting:hover
{
	background: rgba(255,255,255,0);
}

@media (orientation: portrait)
{
	html{
		background: url(../img/backgroundPortrait.jpg);
		width: 100%;
		height: 100%;
		margin: 0px;
		background-size: 100% 100%;
		background-repeat: no-repeat;
	}
	
	#welcome
	{
		position: absolute;
		width: 100%;
		padding-top: 15px;
		padding-bottom: 15px;
		text-align: center;
		font-size: 3em;
		color: #000;
		background: rgba(255,255,255,0.7);
	}

	#label
	{
		position: relative;
		text-align: center;
		font-size: 2em;
		color: #FFF;
		text-decoration: none;
		top: 50%;
	}

	#aircraft
	{
		display: block;
		position: relative;
		float: left;
		text-decoration: none;
		width: 100%;
		height: 50%;
		background: rgba(255,255,255,0.7);
	}

	#aircraft:hover
	{
		background: rgba(255,255,255,0);
	}

	#consulting
	{
		display: block;
		position: relative;
		float: left;
		text-decoration: none;
		width: 100%;
		height: 50%;
		background: rgba(255,255,255,0.7);
	}

	#consulting:hover
	{
		background: rgba(255,255,255,0);
	}
}