body{	
	background-color:#f1f7ed;
	font-family:calibri;
	font-size: 20px;
}
h1{
	color:white;
	background-color:#233d4d;
	text-align:center;
}

h2{
	text-align:center;
	font-family: algerian;
	
}

h3{
	text-align:center;
	
	
}

.pink{/*Pink background class*/
		background-color:pink;
		border: solid black 2px;
}

.ul{
	text-decoration:underline;
}

#myheading{
	font-family:calibri;
	font-size: 80px;
}

img{
    border: solid white 3px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.navbar a{
  background-color: #233d4d;
  color: white;
  padding: 10px 25px;
  text-align: center;
  display: inline-block;
  float:left;
  font-weight:500;
  font-family:calibri;
  font-size:14pt;  
}

.navbars a{
  background-color: #233d4d;
  color: white;
  padding: 10px 25px;
  text-align: center;
  display: inline-block;
  float:left;
  font-weight:500;
  font-family:calibri;
  font-size:14pt;  
}

.navbar a:hover {
  background-color: #a1c181;
  color: #f5f5f5;
}
.navbar a:active {
  background-color: #a1c181;
  color: #f5f5f5;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #233d4d;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16.5px;
  color: white;
  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: white;
  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: green;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #233d4d;
  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: white;
  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: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}