@salahelec2
Posted
I think the design rules are not met here. You have to change the border-radius of the buttons and the container to meet the specifications. Also, the buttons have to be centered inside the container, which is easy to do using Flexbox by setting:
display: flex; flex-direction: column; align-items: center; justify-content: center;
on the container.