@charset "utf-8";
/* CSS Document */



/**** Start All Properties CSS ****/
* {
	margin: 0;
}
*:focus {
    outline: 0;
}
/**** End All Properties CSS ****/



/**** Start Custom Video CSS ****/
/* Body */
html, body {
	font-family: "Century Gothic", "Verdana", "Tahoma", "Arial", "Times New Roman";
	font-size: 11pt;
	color: #ffffff;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

/* Styles for Screens 768px and Lower */
@media screen and (max-device-width: 768px){
  body{
    -webkit-text-size-adjust: none;
  }
}

/* Full Screen Video */
video#bgvid { 
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	z-index: -100;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background: url(images/2017lax-img.jpg) no-repeat;
	background-size: cover;
}
video { 
	display: block;
}

/* Logo */
#logo {
	max-width: 300px;
	margin: auto;
	padding-top: 100px;
}

/* Centered Container */
.container {
	width: 1000px;
	max-width: 95%;
	margin: auto;
}
.container p {
	line-height: 30px;
	/* Top, Right, Bottom, Left */
	padding: 0px 0px 10px 0px;
}

/* Main Page Messsages and Texts */
.main-message {
	font-size: 220%;
	text-align: center;
	font-weight: bold;
	text-shadow: 2px 2px 1px #333333;
	/* Top, Right, Bottom, Left */
	padding: 100px 0px 20px 0px;
}
.main-text {
	font-size: 140%;
	text-align: center;
	line-height: 30px;
	padding-bottom: 20px;
}
/* Styles for Screens 768px and Lower */
@media only screen and (max-width : 768px) {
	.main-message {
		font-size: 200%;
	}
}

/* General Buttons */
.button {
	width: 450px;
	height: 60px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	background: #9c0003;
	/* Borders */
	border-radius: 5px;
	border: 1px solid #fafafa;
	/* Top, Right, Bottom, Left */
	margin: 50px auto 0px auto;
	/* Transition Effect */
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.button:hover {
	background: #cb0004;
}
.button a {
	display: block;
	color: #ffffff;
	font-size: 120%;
	font-weight: bold;
	line-height: 60px;
	text-decoration: none;
}
/* Styles for Screens 768px and Lower */
@media only screen and (max-width : 768px) {
	.button {
		width: 85%;
		/* Top, Right, Bottom, Left */
		margin: 20px auto 0px auto;
	}
	.button a {
		font-size: 95%;
	}
}
/**** End Custom Video CSS ****/