@charset "UTF-8";

html, body{
	margin:0;
	padding:0;
	height:100%;
	}

a{
	color:#FFF;
	text-decoration:none;
	}

.tophalf {
	width:100%;
	height:50%;
	position:relative;
}

.logo{
	width:280px;
	height:116px;
	position:absolute;
	left:50%;
	margin-left:-140px;
	bottom:30px;
	}

.bottomhalf{
	width:100%;
	height:50%;
	background: rgba(242,183,19,1);
background: -moz-linear-gradient(top, rgba(242,183,19,1) 0%, rgba(246,99,69,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(242,183,19,1)), color-stop(100%, rgba(246,99,69,1)));
background: -webkit-linear-gradient(top, rgba(242,183,19,1) 0%, rgba(246,99,69,1) 100%);
background: -o-linear-gradient(top, rgba(242,183,19,1) 0%, rgba(246,99,69,1) 100%);
background: -ms-linear-gradient(top, rgba(242,183,19,1) 0%, rgba(246,99,69,1) 100%);
background: linear-gradient(to bottom, rgba(242,183,19,1) 0%, rgba(246,99,69,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2b713', endColorstr='#f66345', GradientType=0 );
	}

.contact{
	box-sizing:border-box;
	padding-top:20px;
	text-align:center;
	color:#FFF;
	font-family:Verdana, Geneva, sans-serif;
	text-transform:uppercase;
	letter-spacing:5px;
	font-size:12px;
	line-height:22px;
	}

.button{
	display:inline-block;
	padding:20px;
	border: 1px solid #FFF;
	width:200px;
	-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
	}

.button:hover{
	background-color:#FFF;
	color:#f66345;
	}