

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  
  
  display: flex;
  
  Flex-direction: colomn;
  justify-content: space-around;
}

.flex-item {
  background: tomato;
  padding: 5px;
  width: 200px;
  height: 150px;
  margin-top: 10px;
  
  line-height: 150px;
  color: white;
  font-weight: bold;
  font-size: 3em;
  text-align: center;
}