*{
	margin: 0;
	padding: 0;
	font-family: "san-serif";
	box-sizing: border-box;
	
}
.header{
	height: 100vh;
	width: 100%;
	padding: 0 8%;
	background: #080008;
	position: relative;
	
}

nav
{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo{
    width: 140px;
}
.nav-links{
    padding: 28px 0;
}
.nav-links li{
    display: inline-block;
    margin: 0 15px;
}
.nav-links li a{
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
    position: relative;
}

.nav-links li a::after
{
	content: '';
	background: #3a3b3c;
	width: 0;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: width 0.5s;
	
}
.nav-links li a:hover::after
{
	width: 100%;
}

.btn{
	background: #3a3b3c;
	color: white;
	padding: 10px 30px;
	border-radius: 3px;
	cursor: pointer;
}


.content{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 90%;
	max-width: 900px;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	padding-top: 50px;
}

.content h1{
	font-size: 65px;
	font-weight: 600;
	margin-bottom: 40px;
	
}

.content form{
	background: white;
	padding: 10px;
	border-radius: 8px;
	display: flex;
	
}

.content form input{
	flex: 1;
	border: none;
	outline: none;
	padding: 0 20px;
	font-size: 18px;
}
.content form button{
	background: #3a3b3c;
	color: white;
	padding: 15px 40px;
    border: none;
	border-radius: 6px;
	cursor: pointer;
}