I am working on a school project using HTML and CSS. The upper parts above the buttons are centered and responsive, but I am having trouble with the buttons. They are not centered (I adjusted the width to 60%) and they are not responsive. Any assistance would be greatly appreciated.
Below is the CSS code:
.Sports-type{
padding: 10px;
width: 60%;
margin: auto;
text-align: center;
display: grid;
grid-template-columns: auto auto auto;
}
I have tried various display commands and experimented with width, padding, and margin, but haven't achieved the desired results.