html {
	box-sizing: border-box;
	background: #eeeeee;
	font-family: 'Helvetica neue';
	font-size: 20px;
	font-weight: 200px;
}

body {
	margin: 0;
}

*, *:before, *:after {
	box-sizing: inherit;
}

.site-wrap {
	max-width: 700px;
	margin: 70px auto;
	background: #ffffff;
	padding: 40px;
	text-align: justify;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.5);
	transform: scale(0.98);
	transition: transform 0.5s;
}

header {
	text-align: center;
	height: 50vh;
	background: url(../img/banner.jpg) bottom center no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

h1 {
	color: #ffffff;
	font-size: 7vw;
	text-shadow: 3px 4px 0 rgba(0,0,0,0.2);
}

nav {
	background: #07c8b4;
	top: 0;
	width: 100%;
	transition: all 0.5s;
	position: relative;
	z-index: 1;
}

nav > ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

nav li {
	flex: 1;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
}

li.logo {
	max-width: 0;
	overflow: hidden;
	background: #ffffff;
	transition: all 0.9s;
	font-weight: 600px;
	font-size: 30px;
}

li.logo a {
	color: #000000;
}

nav a {
	text-decoration: none;
}

/*styles for sricky navbar*/

.fixed-nav nav {
	position: fixed;
	box-shadow: 0 5px rgba(0,0,0,0.1);
}

.fixed-nav li.logo {
	max-width: 500px;
}

.fixed-nav .site-wrap {
	transform: scale(1.1);
}