@charset "utf-8";

.menuItems {
  display: flex;
  flex-wrap: wrap;	
  align-items: center;
  justify-content: center;

 }
.menuItems > div {
  background-color:#005EB8; 
  color: white; font-size:16px; 
  border-radius: 5px; 
  margin: 2px 2px;
  font-weight:500;
  font-family: sans-serif;
  text-transform: uppercase;
  flex-grow: 2;
 }
.menuItems a {
  color: white;
  text-decoration: none;
  padding: 7px;
}
.menuItems > div :hover {
  background-color: #319842;
  border-radius: 5px;
}
.menuProgram {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
 }
.menuProgram > div {
  background-color:#319842; 
  color: white; font-size:16px;
  margin: 0px 2px; 
  border: 1px white; 
  font-weight: bold;
  font-family: sans-serif;
  text-transform: uppercase;
  padding: 10px;
 }
.menuProgram a {
  color: white;
  text-decoration: none;
  padding: 10px;
}
.menuProgram > div :hover {
  background-color: #005eb8;
}