/* Whole page 100% height */
html, body {
	height: 100%;
}

/* jumbotron background image just a gradient of sucs-ish orange */
.jumbotron {
	background-image: linear-gradient(to bottom left, #FA0, #F60);
}

.jumbotron img {
	width: auto;
	height: auto;
        max-height: 12em;
}

/* nav background image just a gradient of sucs-ish orange */
nav {
	background-image: linear-gradient(to bottom left, #FA0, #F60);
}

nav img {
	width: auto;
	height: auto;
	max-height: 4em;
}

h1 {
	color: #fff;
	font-weight: bold;
}

.btn-primary {
	background-color: #f60;
	border-color: #f60;
}
.btn-primary:hover {
	background-color: #f80;
	border-color: #f80;
}