/* CSS Document */

* {
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
}

html, body {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	background: #eee;
	font-family: 'Quicksand', sans-serif;
	
}

.main {
	width: 100%;
	max-width: 600px;
}

nav {
	position: sticky;
	top: -16px;
	height: 48px;
	display: flex;
	align-items: flex-end;
	background:linear-gradient(130deg,#00965a,#002140 50%,#5a0067 100%);
}

nav ul {
	width: 100%;
	display: flex;
	align-items: flex-end;
	list-style: none;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
	letter-spacing: 0.01em;
}

nav ul a {
	color: #fff;
}

nav ul li {
	background: #222;
	line-height: 32px;
}

nav ul a:hover li {
	background: none;
}

nav ul #home {
	width: 42px;
	height: 48px;
	background-image: url("../img/nav-logo-white.png");
	background-repeat: no-repeat;
	background-size: 48px;
	background-position: -1px;
	border-top-right-radius: 20px;
	transition: 0.2s;
}

nav ul #home.sticky {
	background:red;
}

nav ul a:nth-child(n+2) li {
	padding: 0 12px;
}

nav ul #last {
	flex-grow: 1;
}
.content {
	background: #fff;
	min-height: 90%;
}


