ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

a {
    color: orange;
}

section {
    display: flex;
    gap: 30px;
}

p {
    flex-basis: 0px;
    flex-grow: 1;
    background-color: gray;
    border-radius: 5px;
    justify-content: space-around;
    text-align: center;
    color: white;
    padding: 25px;
}
