/*     First flexbox is on the ul
Second flexbox is on the section
Other styles & colors just need to be close. 
*/

ul {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    list-style: none;
}

A {
    color: orange;
}
a:visited {
    color: orange;
}


section {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
}


section > * {
  flex: 0 0 200px;  
  height: 100px;     
  background-color: rgb(102, 102, 102);
  color: white;
  border-radius: 5px;
  padding: 10px;
}