@charset "utf-8";
/* CSS Document */



/* FONTS */
@font-face {
	font-family: ribeyeMarrow;
	src: url(../assets/fonts/astigmatic-one-eye-typographic-institute_ribeye/RibeyeMarrow-Regular.ttf);
}
/* FONTS */



/* GENERAL */
* {
	margin: 0;
	}
	
body {
	background-image: url("../assets/images/backgrounds/wheat.png");
	opacity: 1;
    transition: 1s opacity;
	background-attachment: fixed;
}

body.fade-out {
    opacity: 0;
    transition: none;
}

.container {
	height: 1000px;
	width: 100%;
	margin: 0 auto;
	border-top: none;
	border-bottom: none;
}

p {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
	}

p1 {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
}

p2 {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
	font-size: 18px;
	letter-spacing: .5px;
}

p3 {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
	font-size: 12px;
}

blockquote {
	margin: 10px 0 15px;
}
/* GENERAL */



/* NAVIGATION */
.header-fixed {
	background-color:#000000;
	padding: 20px 40px;
	height: 80px;
	color: #ffffff;
	box-sizing: border-box;
	top:-100px;
	-webkit-transition:top 0.3s;
	transition:top 0.3s;
}

.header-fixed .header-limiter {
	max-width: 1200px;
	text-align: center;
	margin: 0 auto;
}

.header-fixed-placeholder{
	height: 80px;
	display: none;
}

/* Logo */
.header-fixed .header-limiter h1 {
	float: left;
	font: normal 35px Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
	line-height: 40px;
	margin: 0;
}

.header-fixed .header-limiter h1 span {
	color: #00b7e1;
	font-style: oblique;
}
/* Logo */
/* NAVIGATION */


/*IMPORTANT STUFF*/
* {
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin-bottom: 24px;
}


html, body {
	height: 70%;	
}

section {
	height: 100%;
	background-color: #000;
	box-sizing:border-box;
}
/*IMPORTANT STUFF*/



/* Links */
.header-fixed .header-limiter a {
	color: #ffffff;
	text-decoration: none;
}

.header-fixed .header-limiter nav {
	font: 18px Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
	line-height: 40px;
	float: right;
}

.header-fixed .header-limiter nav a{
	display: inline-block;
	padding: 0 7px;
	text-decoration:none;
	color: #ffffff;
	opacity: 0.9;
}

.header-fixed .header-limiter nav a:hover{
	background-color: #505963;
	opacity: 1;
}

.header-fixed .header-limiter nav a.active {
	background-color: #35393e;
	pointer-events: none;
	opacity: 1;
}
/* Links */


/* Fixed Version */
body.fixed .header-fixed {
	padding: 10px 40px;
	height: 50px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

body.fixed .header-fixed-placeholder {
	display: block;
}

body.fixed .header-fixed .header-limiter h1 {
	font-size: 24px;
	line-height: 30px;
}

body.fixed .header-fixed .header-limiter nav {
	line-height: 28px;
	font-size: 13px;
}
/* Fixed Version */

/* NAVIGATION */



/* FOOTER */
footer {
	height: 30px;
	margin: 0 auto;
	background-color: #000000;
	line-height: 30px;
	text-align: center;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
}

#footer {
	height: 30px;
	width: 100%;
	margin: 0;
	background-color: #000000;
	position: fixed;
    bottom: 0;
	line-height: 30px;
	text-align: center;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
	font-size: 16px;
	opacity: 0.9; 
}

.wrap {
	width: 100%;
	position: relative;
	margin: 0;
	bottom: 0;
}
/* FOOTER */



/* MEDIA QUERIES - MOBILE */
@media only screen and (min-width : 0px) and (max-width : 480px) {

#footer {
		font-size: 10px;
}	
}



/* MEDIA QUERIES */

/* Top Navigation */
@media all and (max-width: 680px) {

	.header-fixed {
		padding: 20px 0;
		height: 85px;
	}

	.header-fixed .header-limiter h1 {
		float: none;
		margin: -8px 0 10px;
		text-align: center;
		font-size: 24px;
		line-height: 1;
	}

	.header-fixed .header-limiter nav {
		line-height: 1;
		float:none;
	}

	.header-fixed .header-limiter nav a {
		font-size: 13px;
	}

	body.fixed .header-fixed {
		display: none;
	}

}
/* Top Navigation */

/* MEDIA QUERIES */