body, html, .container {
	height:100%;
	margin: 0;
}

body {
	background-image:url('images/Tea_plantation_Darjeeling.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment:fixed;
	height:100%;
	font-family: 'Open Sans', sans-serif;
	line-height:25px;
	font-size:15px;
}

.container { -webkit-animation:fadein 2s; animation:fadein 2s }
@-webkit-keyframes fadein { from {opacity:0} to {opacity:1} }
@keyframes fadein { from {opacity:0} to {opacity:1} 
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1{
	font-size:200px;
	font-weight:normal;
	color:#ffffff;
	opacity:0.8;
	letter-spacing:30px;
}

.navigation {
	position:fixed;
	bottom:0px;
	left:0px;
	right:0px;
	height:50px;
	background-color:#000;
	opacity:0.7;
	z-index:3;
	min-width:1123px;
}

.nav2 {
	box-sizing:border-box;
	position:fixed;
	bottom:0px;
	left:0px;
	right:0px;
	height:50px;
	padding:13px;
	z-index:4;
	min-width:1123px;
}

a {
	color:#fff;
	text-transform:uppercase;
	font-size:20px;
	text-decoration:none;
	opacity:0.7;
	margin-left:50px;
	margin-right:50px;
	transition: opacity .6s;
}

a:hover {
	opacity:1;
}

strong {
	color:#fff;
	text-transform:uppercase;
	font-size:20px;
	text-decoration:none;
	font-weight:normal;
	margin-left:50px;
	margin-right:50px;
}