body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
	font-weight: 300;
	font-size: 16px;
	color: black;
}

a:link { color: #755D48; text-decoration: none; }
a:visited { color: #755D48; text-decoration: none; }
a:hover { color: #755D48; text-decoration: underline; }
a:active { color: #755D48; text-decoration: underline; }

header {
	background: #FAEBD7;
	padding: 10px 40px;
}
	header h1 {
		display: inline-block;
	}
		header h1 a {
			color: #000000;
		}
		
	header nav {
		display: inline-block;
	}
	header nav ul {
		list-style: none;
	}
		header nav ul li {
			display: inline-block;
			margin-left: 50px;
			font-size: 20px;
		}
	
	header #auth {
		position: absolute;
		top: 30px;
		right: 30px;
		font-size: 20px;
	}
		header #auth img {
			width: 20px;
			vertical-align: -2px;
			margin-left: 12px;
		}

	header a:hover {
		text-decoration: none;
	}
	
main {
	min-height: 600px;
	position: relative;
	padding: 10px 40px;
}

	main .container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	
footer {
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 10px 40px;
}

@media screen and (min-width: 768px) {
	.mobile-only { display: none !important; }
}
@media screen and (max-width: 767px) {
	.mobile-hidden { display: none !important; }
}

#motto {
	position: fixed;
	left: 40%;
	bottom: 30px;
	z-index: -1;
}