@charset "UTF-8";
/* CSS DOCUMENT */

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

body {font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";}
a {text-decoration: none;}
li {list-style: none;}
body {
	background-color: #003300;
	max-width: 1450px;
}

/* NAVBAR STYLING STARTS */

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	background-color: #003300;
	color: #FFFFFF;
}
.nav-links a {
	color: #FFFFFF;}

/* LOGO */
.logo {float: left; "max-width:100%; height:auto;"}


/* NAVBAR MENU */
.menu {
	display: flex;
	gap: 0.7em;
	font-size: 0.8em;
}
.menu li:hover {
	background-color: #4c9e9e;
	border-radius: 5px;
	transition: 0.3s ease;	
}
.menu li {padding: 5px
	;}


/* RESPONSIVE NAVBAR MENU STARTS */
/* CHECKBOX */
input[type=checkbox]{display: none;}

/* HAMBURGER MENU */
.hamburger {
	display: none;
	font-size: 24px;
	user-select: none;
}

/* NAV MEDIA QUERY */
@media (max-width: 800px) {
	.menu {
		display: none;
		position: absolute;
		background-color: #003300;
		right: 0;
		left: 0;
		text-align: center;
		padding: 16px 0;
	}
	.menu li:hover {
		display: inline-block;
		background-color:#4c9e9e;
		transition: 0.3s ease;
	}
	.menu li + li {margin-top: 12px;}
	input[type=checkbox]:checked ~ .menu{display: block;}
	.hamburger {display: block;}
	.dropdown {
		left: 50%;
		top: 30px;
		transform: translateX(35%);
	}
}

/* MAIN STYLING */

a {color:#FFFFFF;}

.intro h1 { 
	padding: 2em;
	color: #FFFFFF;  
	text-align: center; 
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 2em;
	font-weight: 200;
	text-transform: uppercase;
}

.intro h2 {
		padding: 1em;
		color: #FFFFFF;  
		text-align: center; 
		font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
		font-size: 1.5em;
		font-weight: 200;
		text-transform: uppercase
}


.intro p {
	
		color: #FFFFFF;
		font-size: 1.2em;
		text-align: center;
		font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		padding: 1em 2em
}

.geotime p {
	
		color: white;
		font-size: 1.2em;
		text-align: center;
		font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		padding: 1em 2em	
}

.geotime h3 {
		padding: 1em;
		color: white;  
		text-align: center; 
		font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
		font-size: 1.5em;
		font-weight: 200;
		text-transform: uppercase
}

body {	margin-left: auto;
		margin-right: auto;
	}

.col {width: 100%;}

img {	width: 100%;
		max-width: 100%;
		height: auto;
		vertical-align: middle;
		padding: 7px;
			
	}



/* FOOTER */

.foot {
	background-color: teal;
	font-size: 0.9em;
	padding: 60px;
	text-align: center;
}




