I am making a game of chess, and have five buttons for if you resign, if you draw, and to reset the game. However, I want them to appear bigger, and the css I have is not doing that. I have tried using
font-size: 3rem;, but that does not appear to work.
Here is my HTML:
div.buttons {
display: flex;
justify-content: center;
font-size: 3rem;
}
<div class="buttons">
<button>Resign for White</button>
<button>Resign for Black</button>
<button>Offer Draw</button>
<button>Accept Draw</button>
<button>RESET GAME</button>
</div>