*{
	margin: 0;
	padding: 0;
	font-family: Century Gothic;
}
header{
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(../wallpaper.jpg);
	height: 100vh;
	background-size: cover;
	background-position: center;
}

section{
	width: 100%;
	height: 100vh;
	background-color: #000;
}
section.sec1{
	background: url(../try.jpg);
	background-size: cover;

}
section.sec2{
	padding: 100px;
	box-sizing: border-box;
	height: auto;
	
}
section.sec2 h2{
	font-size: 3em;
	margin: 0;
	padding: 0 0 20px;
	color: #fff;

}
section.sec2 p{
	font-size: 1.4em;
	margin: 0;
	padding: 0;

}
.sec3{
	background: url(../try2.jpg);
	background-size: cover;
}
nav{
	width: 100%;
	height: 50px;
	background: black;
	border-top: 1px solid rgba(255,255,255,.2);
	border-bottom: 1px solid rgba(255,255,255,.2);
	position: fixed;
	top: 0;
}

nav ul{
	float: right;
	list-style-type: none;
	margin-top: 25px;
}

nav ul li{
	display: inline-block;
}

nav ul li a{
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	padding: 5px 20px;
	border: 1px solid transparent;
	transition: 0.6s ease;
}

nav ul li a:hover{
	background-color: #fff;
	color: #000;
}

nav ul li.active a{
	background-color: #fff;
	color: #000;
}
.logo img{
	float: left;
	width: 150px;
	height: auto;
}

.main{
	max-width: 1200px;
	margin: auto;
}

.title{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.title h1{
	color: #fff;
	font-size: 70px;
}

.button{
	position: absolute;
	top: 63%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.btn{
	border: 1px solid #fff;
	padding: 10px 30px;
	color: #fff;
	text-decoration: none;
	transition: 0.6s ease;
}

.btn:hover{
	background-color: #fff;
	color: #000;
}