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

html {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#888061+0,555555+40,5a453a+100&0.5+0,0.5+100 */
    background: -moz-linear-gradient(top, rgba(136,128,97,0.5) 0%, rgba(85,85,85,0.5) 40%, rgba(90,69,58,0.5) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(136,128,97,0.5) 0%,rgba(85,85,85,0.5) 40%,rgba(90,69,58,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(136,128,97,0.5) 0%,rgba(85,85,85,0.5) 40%,rgba(90,69,58,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80888061', endColorstr='#805a453a',GradientType=0 ); /* IE6-9 */
	background-color: #666;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	min-height: 100vh;
}

header {
	width: 100%;
    height: 110px;
	background-color: none;
	margin-bottom: 15vh;	
}

h1.main-header {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-weight: 400;
	font-size: 3em;
	width: auto;
	color: #DDD;
	text-align: center;
	margin:0 0 20px 0;
	padding: 30px 0 0 0;
	text-shadow: 4px 4px 15px black;
}

#titlehead {
	width: 100%;
	height: auto;
	border-top: 8px solid #0E0E39;
	border-bottom: 8px solid #0E0E39;
}

#button-container {
	text-align: center;
}

.button{
	width: 20%;
	min-width: 200px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	padding: 80px 80px;
}

h2.button-text {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-weight: 400;
	font-size: 1.7em;
	color: #DDD;
	background-color: #202054;
	border: 3px solid #0E0E39; 
	border-radius: 8px;
	padding: 8px 20px;
}

/* LINK STYLES START */

a:link {
	color: inherit;
	text-decoration: none;
	transition: all linear 0.15s;
}

.button-text:hover {
    color: #DDD;
    background-color: #0E0E39;
	transition: all linear 0.15s;
}
