@charset "utf-8";
/* CSS Document */

.mainhead {
    font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
    font-size: 45px;
    color: #3C5134;
}
.heading {
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
	font-size: 26px;
	color: #3C5134;
}

body {
	background-color:#DAE8D5;
}
.nav-container {
	display: flex;
	gap: 24px;
	justify-content: center;
	padding: 40px 20px;
}
.nav-link {
	position: relative;
	display: block;
	overflow: hidden;
	width: 320px;
	height: 320px;
	border-radius: 8px;
	background-color: #000000;
	text-decoration: none;
}
.nav-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 1;
	transition: opacity 0.35s ease-in-out; /*smooth transition */
}

.nav-link:hover .nav-image {
	opacity: 0.4;
}

.nav-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
		
	display:flex;
	justify-content:center;
	align-items: center;
	
	color:#FFFFFF;
	font-family: Verdana, sans-serif;
	font-size: 30px;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	
	pointer-events: none;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5)
}
.table-text {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 14px;
	color: #3C5134;
	font-weight: 400;
}
* {
	box-sizing: border-box
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden;
}