@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	background-color: #353535;
	background-size: cover;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 20px;
	line-height: 24px;
}

.navbar {
	text-align: left;
	width: 100%;
	background: #353535;
	opacity: 0.6;
}

.navbar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}

.navbar ul li a {
	display: block;
	padding: 25px;
	color: white;
	text-decoration: none;
}

.navbar ul :after {
	content: "";
	clear: both;
	display: block;
}

.navbar ul li {
	float: left;
	list-style: none;	
}

.navbar ul ul {
	display: none;
}

.navbar ul li:hover > ul{
	display: block;
	margin-top: 73px;
}

.navbar ul li:hover {
	background: black;
	transition: 0.9s;
}

.navbar ul li:hover a{
	color: white;
}

.navbar ul ul {
	background: black;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 100%;
}

.navbar ul ul li {
	float: none;
	position: relative;	
}

.navbar ul li li a {
	padding: 25px;
	color: white;
	width: 100%;
	text-align: left;
}

.navbar ul ul li a:hover {
	background: #353535;
	color: aqua;
	transition: 0.9s;
	width: auto;
}


#container {
	margin: 0;
	padding: 0;
}

#box1 {
	height: 100vh;
	width: 100%;
	background-image: url("images/img1.jpg");
	background-size: cover;
	display: table;
	background-attachment: fixed;
}
#box2 {
	height: 100vh;
	width: 100%;
	background-image: url("images/img2.jpg");
	background-size: cover;
	display: table;
	background-attachment: fixed;
}
#box3 {
	height: 100vh;
	width: 100%;
	background-image: url("images/img3.jpg");
	background-size: cover;
	display: table;
	background-attachment: fixed;
}
h1 {
    font-family: arial black;
    font-size: 50px;
    color: white;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    text-shadow: 10px 10px 5px #000000;
}