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;
	text-align: center;
}
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%;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1{
	font-size: 55px;
	font-family: 'Times New Roman', Times, serif;
}
.container{
	max-width: 1320px;
	margin: 0 auto;
	padding: 5%;
}
form{
	max-width: 500px;
	margin: 0 auto;
	text-align: left;
	padding: 20px;
	font-size: 20px;
}
input,textarea,label{
	display: block;
	margin: 0 auto;
	width: 100%;
}
input,textarea{
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid rgb(190, 178, 160);
}
input[type=submit]{
	background-color: rgb(190, 178, 160);
	padding: 15px 0;
	font-size: 18px;
	border-bottom: none;
	margin-top: 30px;
	cursor: pointer;
	transition: all .3s ease;
}
input[type=submit]:hover{
	background-color: #fff;
}
input,textarea{
	font-size: 18px;
	padding: 10px;
	color: #000000;
	font-family: 'Times New Roman', Times, serif;
}
input:focus,textarea:focus{
	outline: 1px solid rgb(190, 178, 160);
}
@keyframes transitionIn {
	from {
		opacity: 0;
	}

	to{
		opacity: 1;
	}
}
.container {
	animation: transitionIn 0.75s;
}