#menu {

  display: flex;

  flex-direction: row;

  align-items: center;

  justify-content: space-around;

  row-gap: 10px;

  flex-wrap: wrap;

  padding: 10px 0;

	background-color: #194988;

  border: none;

  border-radius: 5px;

}

#menu img {

  width: 120px;

	height: 60px;

  filter: drop-shadow(0px 7px 7px #333333);

}

#tabs {

  display: flex;

  flex-direction: row;

  align-items: center;

  justify-content: space-around;

  flex-wrap: wrap;

}

.tab {

  margin: 0px 20px;

  font-size: 1.2rem;

  font-weight: bold;

  letter-spacing: 2px;

	color: #F5FFFA;

  text-shadow: 0px 7px 7px #163C6C;

	transition: .3s ease-in-out;

	cursor: pointer;

}

.tab:hover {

	transform: scale(1.2);  

}