/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


.center-text {
    text-align: center;
}




.flex-container {
  /* We first create a flex layout context */
  display: flex;

    flex-direction: row;
    flex-wrap: wrap;
    flex-flow: row wrap;

  /* Then we define how is distributed the remaining space */
  justify-content: flex-start;
}




.navigation {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  
  
  list-style: none;
  margin: 0; 
  background: #fc8828;
}

.navigation a {
  text-decoration: none;
  display: block;
  padding: 1em;
  color: white;
}

.navigation a:hover {
  background: #d057a9;
}


body {
  background-color: #ffd75e;
  color: white;
  font-family: Verdana; 
}