﻿@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:100,300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,400,600,700,800,900');
@import url("reset.css");

body {
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 300;
	font-size: 100%;
	letter-spacing: 0;
	color: #FFF;
	min-height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

a:link    {color:#4D4D4D; text-decoration:none;}
a:visited {color:#4D4D4D; text-decoration:none;}
a:hover   {color:#696969; text-decoration:none;}
a:active  {color:#696969; text-decoration:none;}



/***** navbar *****/
#navBar {
	position: fixed;
	height: 40px;
	width: 100%;
	top: 0;
	background: #FFF;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0); 
	z-index: -100;
}

#navBar h1 {
	position: relative;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 0.675em;
	font-weight: 400;
	text-transform: uppercase;
	display: inline;
}

#navBar-bg-p {
	visibility: none;
}

#navBtn {
	display: block;
	position: absolute;
	left: 15px;
	top: 15px;
	width: 27px;
	height: 27px;
	border: 1px solid #000000;
	
	background: url(../img/nav.png);
	background-size: 27px 27px;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #FFF;
	text-decoration: none;
	
	z-index: 100;
	cursor: pointer;
	
	opacity: 1;
	visibility: visible;

	-webkit-transition: all .2s ease-in;
	   -moz-transition: all .2s ease-in;
	     -o-transition: all .2s ease-in;
	        transition: all .2s ease-in;	
}

#navBox {
	position: fixed;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: auto;
	
	background-color: rgba(255,255,255,0.9);
		
	opacity: 0;
	visibility: hidden;
	
	z-index: 800;

	-webkit-transition: all .5s ease-out;
	   -moz-transition: all .5s ease-out;
	     -o-transition: all .5s ease-out;
	        transition: all .5s ease-out;
}

#navBox-container{
	position: relative;
	margin: 0;
	padding: 0;

	width: 100%;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	color: #000000;

	opacity: 0;
	visibility: hidden;
	
	overflow: auto;
	-webkit-overflow-scrolling:
}

#navBox h1 {
	position: relative;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.5em;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 250%;
	display: block;
	text-align: center;
 	word-wrap: break-word;	
}