* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	height: 100%;
}

.links {
	display: flex;
	list-style: none;
}

.navbar {
    background-color: #2a2a2e;
	position: fixed;
	font-family: 'Cinzel', serif;
	width: 100%;
	-webkit-box-shadow: 0px 6px 14px -8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 6px 14px -8px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 6px 14px -8px rgba(0, 0, 0, 0.3);
	display: block !important;
	height: 52px;
}

.navbar a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.links li a.active {
	background-color: #a72931;
	color: white;
}

.navbar a:hover {
	background-color: #a72931;
	color: white;
	;
}

#navlogo {
	height: 30px;
	width: auto;
	position: fixed;
	right: 0%;
	top: 2%;
	z-index: 2;
}

.content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 0px);
	background: #2a2a2e;
	color: #fff;
	text-align: center;
}

.banner1 {
	width: 100%;
}

#greetings {
	padding-top: 3%;
	font-size: 3vh;
}

h1 {
	font-family: 'Cinzel', serif;
	color: white;
	padding-top: 25px;
}

p {
	font-family: 'Cinzel', serif;
}

#subthx {
	font-size: 4vh;
}

#contactthx {
	font-size: 4vh;
}

@-webkit-keyframes swing {
	15% {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
	30% {
		-webkit-transform: translateX(-5px);
		transform: translateX(-5px);
	}
	50% {
		-webkit-transform: translateX(3px);
		transform: translateX(3px);
	}
	65% {
		-webkit-transform: translateX(-3px);
		transform: translateX(-3px);
	}
	80% {
		-webkit-transform: translateX(2px);
		transform: translateX(2px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes swing {
	15% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	30% {
		-webkit-transform: translateX(-5px);
		transform: translateX(-5px);
	}
	50% {
		-webkit-transform: translateX(3px);
		transform: translateX(3px);
	}
	65% {
		-webkit-transform: translateX(-3px);
		transform: translateX(-3px);
	}
	80% {
		-webkit-transform: translateX(2px);
		transform: translateX(2px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.banner1:hover {
	-webkit-animation: swing 1s ease;
	animation: swing 1s ease;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

*,
*:focus,
*:hover {
	outline: none;
}

@media only screen and (max-width: 1000px) {
	.banner1 {
		width: 85%;
	}
	.links {
		display: flex;
		list-style: none;
	}
}

@media only screen and (max-width: 500px) {
	.banner1 {
		width: 95%;
	}
	.links {
		display: flex;
		list-style: none;
		padding-left: 51px;
	}
	.navbar a {
		padding: 14px 10px;
	}
	.banner1:hover {
		-webkit-animation: swing 1s ease;
		animation: swing 1s ease;
		-webkit-animation-iteration-count: 1;
		animation-iteration-count: 1;
	}
	#subthx {
		font-size: 5vw;
	}
	#contactthx {
		font-size: 5vw;
	}
}