.gameboard {
    width: 100%;
    height:100%;
    min-height: 400px;
    padding: 1em 0em;
    background-color:cornsilk;
}

h1#targetWord {
    font-size: 3em;
    text-align: center;
    margin-bottom: 0.5em;
}

table {
  table-layout: fixed;
  align-content: center;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 250px;
  margin: 10px auto;
  
}

tr {
   display: flex;
  flex-wrap: wrap; /* Allow cells to wrap to the next line on smaller screens */
}
th, td {
   flex-basis: 30%; /* Each cell takes full width */
   /*flex: 2 ;  /* Each cell takes equal space */
   box-sizing: border-box; /* Ensure padding and border are included in the width */
   padding: 0.2em;
}

    
.gameResults {
    text-align: center;
    margin-top: 1.5em;
    margin-bottom: 2em;
}    

button.wordButton {
    width: 100%;
    height: 100%;
    padding: auto;
    font-size: 1.25em;
    text-align: center;
}
button.instrButton {
    margin: 0.2em;
    padding: auto;
    font-size: 1.25em;
}