/* Sets the font and background color */
body {
	font-family: 'Lato', sans-serif;
	background-color: black;
	text-align: center;
}
/* Navigation Bar */
nav {
	position: absolute;
	width: 100%;
	z-index: 1;
}
nav a, nav a:hover, nav a:active, nav a:visited, nav a:link {
	text-decoration: none;
	color: white;
}
/* Adds line on hover */
nav a:hover {
	border-bottom: 3px solid white
}
/* Adds line to current page */
ul li:nth-child(4) a {
	border-bottom: 3px solid white;
	pointer-events: none;
   	cursor: default;
}
/* Sets font size */
.navigation {
	list-style-type: none;
	font-weight: 500;
	font-size: 18px;
	float: right;
	margin-top: 30px;
}
nav li {
	display: inline-block;
	padding-right: 40px;
}
/* Logo placement */
.logo {
	float: left;
	width: 10%;
	padding-left: 40px;
	margin-top: 22px;
}
/* Title text */
h1 {
	font-size: 144px;
	font-weight: 800;
	color: #ED182F;
	padding-top: 50px;
	margin-bottom: 73px;

}
.clear {
	clear:both; 
}
/* Image gallery */
.photo-link	{
	padding: 0;  
	margin: 0; 
}
.photo-link	img:hover{
	opacity: 0.5;
	filter: alpha(opacity=50);
}