 /* The navigation menu */

body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

.img {
 margin: 5px 10px;
}

.flexbox-container {
  display: -ms-flex;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar {
  display:flex;
  align-items:center;
  background-color: #333;
  font-family: Verdana, Helvetica, Arial;
  justify-content: center;
}

/* Navigation links */
.navbar a:link {
  font-size: 16px;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  text-align:center;
  display:inline-block;
}

.navbar a:visited {
  font-size: 16px;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  text-align:center;
  display:inline-block;
}

/* Add a red background color to navigation links on hover */
.navbar a:hover {
  background-color: #ffd61e;
  color:black;
  text-align:center;
  display:inline-block;
}

.navbar a:active {
  background-color: #ffd61e;
  color:black;
  text-align:center;
  display:inline-block;
}

.standardlink {
  display:flex;
  align-items:left;
  justify-content: left;
}

.standardlink a:link, a:visited {
 color:blue;
}

.standardlink a:hover, a:active {  
  color: #4080ff;
  text-align:center;
  display:inline-block;
}

.selected {
 background-color: red;
}

.parent {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items:center;
  justify-content:center;
}

.social {
  display: flex;
  flex-direction: row;
  align-items:right;
  justify-content:center;
  margin: 5px 40px;
}

.child {
  margin: 20px 40px;
}

.child2 {
 margin: 0px 0px;
}

.footer {
  display:flex;
  justify-content: center;
  align-items: center;    
  min-height:40px;
  color: white;
  background-color: #333;
}

.line {
  flex:1;
  min-height: 28px;
  background-image: url("background.png");
}

.button {
  background-color: #008CBA;
  border: none;
  color: white;
  padding: 12px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border: 2px solid #006C9A;
}

.button:hover {
  background-color: #20ACDA;
  color: white;
  display:inline-block;
  cursor: pointer;
}

.flexrow {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items:center;
}
.flexcol {
  display: flex;
  flex-direction: column;
}
.item {
  display:flex;
  justify-content: center;
  align-items: center;    
  background-color: white;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
