body, html {
	height: 100%;
	margin: 0;
	padding: 0;
	color: white;
}
body {
	font-family: 'Cairo', sans-serif;
	font-weight: 400;
	font-size: 1em;
	background: #000 url('/img/landing_bg.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	display: flex;
	justify-content: center;
	align-items: center;
}
navigation {
	display: flex;
	flex-direction: column;
}
navigation h1 {
	display: inline-block;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-family: 'Gugi', cursive;
	font-size: 4em;
	position: relative;
}
	/*navigation h1:after {
		content: '.nl';
		background: white;
		color: black;
		position: absolute;
		left: 100%;
		top: 0;
		margin-left: .2em;
		font-size: .4em;
		padding: .05em .2em .05em .1em;
		border-radius: .2em;
		transform: rotate(20deg);
	}*/
	navigation h1 img {
		max-width: 80%;
	}
		
navigation .slogan {
	text-align: center;
	margin: 1em 0;
	font-family: 'Shadows Into Light', cursive;
	font-size: 2em;
	transform: rotate(-2deg);
}
navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}
	navigation ul li {
		flex: 1 1 33%;
	}
	navigation ul li a {
		display: flex;
		height: 100%;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		color: white;
		text-align: none;
		padding: 0 1em;
		text-decoration: none;
		text-align: center;
		font-family: 'Gugi', cursive;
		text-transform: uppercase;
		font-size: 1.2em;
	}
	navigation ul li a span {
		flex: 0 0 auto;
		text-align: center;
	}
	navigation ul li a img {
		display: block;
		max-width: 100%;
		margin: 0 auto 1em auto;
	}
.allevents {
	display: inline-block;
	margin: 3em auto 0 auto;
	background: #fff;
	color: #000;
	font-family: 'Gugi', cursive;
	text-transform: uppercase;
	font-size: 1em;
	border-radius: .25em;
	text-decoration: none;
	padding: .5em;
}
.allevents:hover {
	background: #06d5a2;
}
	
@media all and (max-width: 75em) {
	navigation h1 {
		font-size: 3em;
	}
	navigation .slogan {
		font-size: 1.6em;
	}
}
@media all and (max-width: 50em) {
	body {
		align-items: stretch;
	}
	navigation {
		padding: 1em 0;
		justify-content: center;
		align-items: stretch;
		align-content: stretch;
	}
	navigation h1,
	navigation .slogan {
		flex: 0 0 auto;
	}
	navigation ul {
		flex: 1 1 100%;
	}
	
	
	
	navigation h1 {
		font-size: 2em;
	}
	navigation .slogan {
		font-size: 1.2em;
	}
	navigation ul {
		flex-direction: column;
	}
	navigation ul li {
		margin-bottom: 1em;
	}
	navigation ul li a img {
		max-height: 4em;
	}
}
	