ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}
section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
section p {
    color: white;
    background: gray;
    border: 1px solid black;
    border-radius: 8px;
    max-width: 250px;
    text-align: center;
    font-style: italic;
    padding: 15px;
}
a {
    color: orange;
}