body{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(246, 246, 246, 0.7),rgba(246, 246, 246, 0.7)), url(https://lh4.googleusercontent.com/68NSB_iqMcvo6owP46eROxZALhbVXaaX-WcVrTLGvJjzH5TALeM81BxqerfPsg2YeEA=w2400);
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0;
	padding: 0;
}
nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 200px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: #000000;
	text-decoration: none;
	font-size: 25px;
    font-style: Georgia;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #000000;
	display: block;
	margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
	width: 90%;
	color: #000000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 62px;
	font-family: 'Times New Roman', Times, serif;

}
.text-box p{
	margin: 10px 0 40px;
	font-size: 25px;
	font-family:'Times New Roman', Times, serif;
	color: #000000;

}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #000000;
	border: 1px solid #000000;
	font-size: 25px;
	font-family: 'Times New Roman', Times, serif;
	padding: 12px 34px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid rgb(0, 0, 0);
	background-color: rgb(0, 0, 0);
	transition: 1s;
	color: #fff;
}
@keyframes transitionIn {
	from {
		opacity: 0;
	}

	to{
		opacity: 1;
	}
}
.text-box {
	animation: transitionIn 0.75s;
}