.flex-container {
  display: flex;
  background-color: white;
  justify-content: center;
  flex-wrap: nowrap;

	}

/*  .flex-container > div {   }   */


/* On screens that are less than 800px, display the bar vertically, instead of horizontally  */

@media screen and (max-width: 800px) {
.flex-container {flex-wrap: wrap;}

}