
body {
  background-color: lightblue;
}

h1 {
	color: navy;
	margin-left: 20px;
}


.topnav {
  background-color: #333;
  overflow: hidden;
}


/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}


/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #4CAF50;
  color: white;
}


/* The navigation menu */
.navbar {
  overflow: hidden;
  background-color: #333;
}

/* Navigation links */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  
}

/* The subnavigation menu */
.subnav {
  float: left;
  overflow: hidden;
  border: 5px outset green;
}

/* Subnav button */
.subnav .subnavbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}




/* Add a red background color to navigation links on hover */
.navbar a:hover, .subnav:hover .subnavbtn {
  /*background-color: red;*/
   background-color: #4CAF50;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  display: none;
  position: absolute;
  left: 10;
  /*background-color: red;*/
  background-color: #4CAF50;
  width: 50%;
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  float: left;
  color: white;
  border: 5px outset white;
  text-decoration: none;
}


/* Add a grey background color on hover */
.subnav-content a:hover {
  background-color: #eee;
  color: black;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
}


.about-grid {
  display: grid;
  text-align: center;
  grid-template-columns: 12% 12% 12% 12% 12% 20% 20%;
}

/* Style the links inside the navigation bar */


.i-am, .i-like {
  text-align: center;
  text-decoration: none
}

.about-list {
  list-style: none;
  padding: 0;
}

.red-text {
  color: red;
  text-align: center;
  
}
.green-text {
  color: green;
  
}
.nav-header-main {
	white-space: nowrap;
	display: inline;
}

.container {
	
	max-width: 840px;
	margin: 100 auto;
	
}

.intro {
  text-align: center;
}


.dropdown {
  float: left;
  overflow: hidden;
  border: 5px outset white;
}


.dropdown .dropbtn {
  font-size: 16px;  
  /*border: none;*/
  /*border: 5px outset white;*/
  /*outline: none;*/
  color: white;
 
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/*  removed this 22/05
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}
*/

.dropdown-content {
  display: none;
  position: absolute;
  /*background-color: #f9f9f9;*/
   background-color: #4CAF50;
  min-width: 160px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: white;
  /*color: black;*/
  padding: 14px 16px;
  text-decoration: none;
  
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
