html, body {
	margin: 0; padding: 0;
	font-size: 110%;
	font-family: Rokkitt;
	background-image: url("../img/wood.png");
	background-repeat: repeat;
	background-attachment: fixed;
}
#main-nav {
	position: fixed;
	top: 0;
	width: 100%;
	max-height: 80px;
	height: 80px;
	min-height: 80px;
	z-index: 100;
}
#main-nav ul {
	float: right;
	font-size: 2em;
	list-style: none outside none;
	margin: 0;
	margin-right: 20px;
	padding-top: 20px;
	overflow: hidden;
}
#main-nav ul li {
	font-family: 'Dosis', Ubuntu, sans;
	line-height: 1em;
	float: left;
	margin-left: 20px;
	list-style: none outside none;
}
#main-nav ul li a {
	text-decoration: none;
	padding: 0.125em 0.2em;
	border-radius: 5px;
	transition: all 0.3s ease 0s;
}
#main-nav a {
	text-decoration: none;
}
div.first {
	padding-top: 150px;
	overflow: hidden;
}
.big {
	font-size: 150%;
	line-height: 110%;
	color: #000718;
}
footer {
	text-align: right;
	font-size: 100%;
	font-family: 'Dosis', Ubuntu, sans;
}
.center {
	text-align: center;
}
.justify {
	text-align: justify;
	line-height: 1.1em;
}
.colored {
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Dosis', Ubuntu, sans;
	font-weight: 400;
}
h1#title, #subtitle {
	text-align: right;
	font-size: 5em;
	line-height: 0.9em;
}
#logo {
	display: inline;
	margin-top: 20px;
	margin-left: 20px;
}
#subtitle {
	padding: 0.5em 0;
	font-size: 2em;
	margin-bottom: 50px;
}
.spacer {
	padding: 70px 0;
}
img.big.logo {
	border-radius: 50%;
	border: 0.1em solid #fff8e7;
	margin: -0.1em;
	box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
	margin: 10px 0;
}
hr {
	border-top: 0.125em solid #000718;
	color: #000718;
	opacity: 0.1;
}
img.border { 
	border: 1px solid #ddd;
	padding: 1px;
	margin: -2px;
}
img.capimg {
	border: 1px solid rgb(204, 204, 204);
}


nav select {
  display: none;
  float: right;
  height: 30px;
  width: 180px;
  font-size: 24px;
  margin: 0;
  margin-right: 20px;
  margin-top: 30px;
  border-radius: 0;
  -webkit-appearance: none;
}
#main-nav {
	animation-duration: 0.5s;
	animation-name: slidedown;
	animation-timing-function: ease-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: slidedown;
	-webkit-animation-timing-function: ease-in;
}
@keyframes slidedown {
	from {
		top: -80px;
	}
	to {
		top: 0;
	}
}
@-webkit-keyframes slidedown {
	from {
		top: -80px;
	}
	to {
		top: 0;
	}
}

img.big.logo {
	animation-duration: 1.5s;
	animation-name: bloop;
	animation-timing-function: ease-in;
	-webkit-animation-duration: 1s;
	-webkit-animation-name: bloop;
	-webkit-animation-timing-function: ease-in;
}
@keyframes bloop {
	from {
		margin-left: -100%;
		box-shadow: 100px 50px 20px 20px rgba(0,0,0,0.3);
	}
	70% {
		box-shadow: 50px 25px 20px 20px rgba(0,0,0,0.3);
	}
	to {
		
	}
}
@-webkit-keyframes bloop {
from {
		margin-left: -100%;
		box-shadow: 200px 150px 20px 20px rgba(0,0,0,0.3);
	}
	70% {
		box-shadow: 150px 25px 20px 20px rgba(0,0,0,0.3);
	}
	to {
		
	}
}


/* ===============================
========== / COLORS / ============ 
=============================== */
h1#title, #subtitle {
	color: rgba(255,248,231,0.9);
	text-shadow: 0 0 5px #000718;
}
#main-nav {
	background-color: rgba(255,248,231,0.9);
	box-shadow: 0px 1px 2px 2px rgba(0,0,0,0.1);
}
#main-nav ul li a {
	color: #000718;
}
#main-nav ul li a:hover {
	color: #fff8e7;
	background-color: #000718;
	opacity: 0.75;
}
.blue {
	background-color: rgb(35, 80, 113);
}
.yellow {
	background-color: rgb(255, 174, 0);
}
.white {
	background-color: #fff;
}
.opacity50 {
	background-color: rgba(255,255,255,0.5);
}
.latte {
	background-color: #fff8e7;
	background-color: rgb(255,248,231);
}
.blood {
	background-color: #630031;
	color: #fff8e7;
}
.c80 {
	height: 80px;
}

/* ===============================
======= / MEDIA QUERIES / ========
=============================== */

@media (max-width: 580px) {
  nav ul     { display: none; }
  nav select { display: inline-block; }
}