The problem is with flex-grow: 1; in p selector ! you should set it to flex: 0 instead of flex-grow.
flex-grow: 1;
p
flex: 0
flex-grow
you may find interactive representation of how flex works along with docs helpful at MDN Docs !