@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%);
	}
}

/* TITLE */

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 h3 { 
	padding: 2em;
	color: #FFFFFF;  
	text-align: center; 
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 1em;
	font-weight: 200;
	text-transform: uppercase;
}



/* THUMBNAIL GALLERY */


div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  	
  	text-align: center;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #FFFFFF;
	font-size:15px;
	text-align:center;
}

* {
  box-sizing: border-box;
}

.thumbnails {
  	float: left;
  	width: 19.99999%;
}

/* MOBILE */

@media only screen and (max-width: 800px) {
  .thumbnails {
    width: 49.99999%;
    margin: 3px 0;
	
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}



/* FOOTER */

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




