/* felx-basis: 0; flex-grow: 1; has to be centered in boxes, border box, change link color orange
a: link { color: orange } space-around nav bar */

ul {
    display: flex;
    justify-content: space-around;
    color: white;
}

a {
    color: orange;
}

section {
    gap: 30px;
    display: flex;
}

p {
    flex-basis: 0px;
    flex-grow: 1;
    background-color: gray;
    border-radius: 5px;
    justify-content: space-around;
    text-align: center;
    color: white;
    padding: 25px;
}

/* i'm such a coding pro no way dude */