ul {
    display: flex;
    justify-content: space-around;
    column-gap: 100px;
    list-style-type: none;
}

section {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 10px;
    align-items: flex-start;
    column-gap: 64px;
    flex-direction: row;
}

p {
    background-color: rgb(100, 100, 100);
    padding: 10px;
    vertical-align: text-top;
    color: white;
    border-radius: 10px;
    flex-grow: 1;
    flex-basis: 0;
    width: 225px;
    height: 75px;
    text-align: center;
}

a {
    color: orange;
}