/*site.css*/
body {
	margin: 0;
	padding: 0;
	font-family: Bookman, Arial, serif;
	color: white;
}

.construction {
	background-image: url("../img/homepage.jpg");
	background-size: cover;
	background-position: center center;
	position: relative;
	top: 0;
	bottom: 0;
	height: 100vh;
	z-index: -10;
}
.construction-overlay {
	position: absolute;
	background-color: rgba(0,0,0,0.5);
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: -5;

}
  
ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
 
ul li {
	float: left;
}
 
ul li a {
	display: block;
	width: 100%;
	background-color: #0B0B61;
	color: white;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	padding: 20px;
}

h1 {
	font-size: 40px;
	text-align: center;
	margin:30px 280px;
	padding:50px 50px 50px 50px;
}
p {
	margin: 125px;
	text-align: center;
	font-size: 20px;
}
 
footer {
	text-align: center;
	font-size: 14px;
}
 
 
 
 
 
