/* 		Colors
	#006700 Green
	#009a00	Slightly Lighter Green
	#004d00 Darker Green
	#333 Dark Grey
	#575757 Light Gray
*/

/*	Fonts
	
	
	--"Noto Sans"--
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-variation-settings:
	"wdth" 100;

	--"Stack Sans Notch"--
	font-family: "Stack Sans Notch", sans-serif;
	font-optical-sizing: auto;
	font-weight: 666;
	font-style: normal;

	
*/


/* Default CSS */

a, h1, h2, h3, h4, h5, h6, p, div, body, ul, li, nav, img, button, #header, #page, #footer, #nav {
	color : #006700;
	text-decoration: none; /* Removes the default underline */
	text-transform: uppercase; /* Makes the text look modern */
	margin: 0px;
	padding: 0px;
	font-family: "Stack Sans Notch", sans-serif;
	font-optical-sizing: auto;
	font-weight: 666;
	font-style: normal;
}
		
/* Connect Guides CSS */
#banner {
	font-family: "Stack Sans Notch", sans-serif;
	font-optical-sizing: auto;
	font-weight: 666;
	font-style: normal;
	margin: 0 auto;
	padding: 10px;

}
#conguide h2{
	font-size: 45px;
	font-family: "Stack Sans Notch", sans-serif;
	font-optical-sizing: auto;
	font-weight: 444;
	font-style: normal;
}
#conguide p{
	font-size: 20px;
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-variation-settings:
	"wdth" 100;
}

body {
	background : #000;
}

a {
	color: #006700; /* Text color */
	text-decoration: none; /* Removes the default underline */
	text-transform: uppercase; /* Makes the text look modern */
}

img {
	display:block
}

.post {
	position: relative;
	margin :10px auto;
	padding: 0;
	border: 5px solid green;
	border-radius: 35px;
	align: center;
	width:500px;

}
.post img {
	border-radius: 30px 30px 15px 15px;
}
.post p {
	padding: 5px;
	font-size: 22px;
}

a:visited {
	color: #006700; /* Text color */

}

a:hover {
	color: #009a00; /* Text color */
}


#page {
	position: relative;
	margin :0 auto;
	text-align: center;
	max-width: 1000px;
	min-width: 600px;
	width: 100%;

}


/* Navbar container */
.navbar {
	overflow: hidden;
	background-color: #333;
	font-family: "Stack Sans Notch", sans-serif;
	font-optical-sizing: auto;
	font-weight: 222;
	font-style: normal;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: #006700;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #006700;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #111;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
	background-color: #111;
	color: #006700;	
	z-index: 2;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
	z-index: 3;
} 

#footer {
	text-decoration: none; /* Removes the default underline */
	position: relative;
	margin :0 auto;
}
