
body {
    background-color: green;
    margin: 0px;
}

.rootBoard {
    background-color: red;
    width: 400px;
    height: 400px;
    }

.board {
    display: flex;
    justify-content: center;
    align-content: center;
}

p {
    display: inline;
}

.button {
    padding: 20px;
    border-radius: 8px;
    background-color: rgb(128, 128, 128);
    border-width: 0px;
    
}

:hover.button {
    background-color: rgb(64, 64 ,64);
}

.grid-board-container {
    display: grid;
    grid-template-columns: repeat(3, 125px);
    justify-content: center;
    gap: 16px;
}