body { margin: 0px; }

/*HEAD*/
.head {
	overflow: hidden;
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-bottom: 1px solid #fff;
}

.title {
	position: absolute;
	top: 130px;
	width: 100%;
	font-family: 'Pacifico', cursive;
	font-size: 112px;
	color: #fff;
}
.subtitle {
	position: absolute;
	left: 50%;
	top: 275px;
	padding: 2.5px 30px;
	font-family: 'Century Gothic';
	font-size: 16px;
	color: #333;
	background-color: #fff;
	border-radius: 5px;
	font-weight: bold;
}

/*NAVBAR*/
.nav {
	top: 20px;
	position: fixed;
	width: 100%;
	font-weight: bold;
	color: white;
	z-index: 2;
}

.nav li {
	display: inline-block;
	font-family: "Century Gothic";
	font-size: 18px;
	border-radius: 5px;
	padding: 2.5px 20px;
	margin: 5px 20px;
	cursor: pointer;
	transition: color 0.5s ease;
}

.nav a {
	color: white;
}

.active, .nav li:hover {
	color: #333;
	background-color: #fff;
}

/*CONTENT*/
main {
	margin: 5px;
	margin-top: 205px;
	font-family: "Century Gothic";
}

.email { cursor: pointer; }