ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
  }
  
  a {
    color: orange;
  }
  
  section{
    display: flex;
  }
  
  p {
    background-color: gray;
    border-radius: 5px;
    margin: 20;
    flex: 1 1 0;
    padding: 10px;
    color: white;
    text-align: center;
  }
      
