body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-image: url('../img/boards/Table.jpg');
    background-size: cover;
    background-repeat: no-repeat;

    box-sizing: border-box;
    margin: 20px;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
	display:flex;
}

.grid-container {
    display: grid;
    grid-template-areas: 'header header header' 'player0 board player1' 'player2 board player3' 'empty notes notes' 'empty buttons moves';
    grid-template-columns: min-content min-content min-content;
    margin: auto;
    left: 50%;
    right: 50%;
    background-color: transparent;
}

