body {
    display: grid;
    grid-template-rows: auto 1fr;
    margin: 2px;
    padding: 2px;
    border: 2px solid gold;
}

header {
    grid-column: 1/end;
    grid-row: 1/2;
    color: blue;
    font-size: 24px;
    padding-bottom: 4px;
    margin-bottom: 4px;
    border-bottom: 20px solid lightblue;
}

#gameboard {
    font-size: 12px;
    display: grid;
    grid-row: 2/end;
    grid-column: 1/end;
    grid-template-rows: 120px repeat(9, 96px) 96px;
    grid-template-columns: 1.5fr repeat(9, 1fr) 1.5fr;
    background-color: papayawhip;
    border: 2px solid red;
}

#monopoly {
    grid-column: 2/11;
    grid-row: 2/11;
    display: grid;
    grid-template-rows: repeat(12, 1fr);
    border: 2px solid black;
}

.buffer {
    grid-row: 1/2;
}
h1 {
    grid-row: 2/3;
    justify-self: center;
    font-size: xx-large;
}
h2 {
    grid-row: 3/4;
    align-self: center;
    justify-self: center;
}

#grid {
    grid-row: 4/8;
    display: grid;
    font-size: x-large;
    justify-content: stretch;
}
#player1div {
    grid-column: 1/2;
    background-color: lightgreen;
    display: grid;
    justify-content: center;
    align-content: top;
    text-align: center;
}
#player2div {
    grid-column: 2/3;
    background-color: violet;
    display: grid;
    justify-content: center;
    align-content: top;
    text-align: center;
}
#player1amt, #player2amt {
    background-color: green;
    font-weight: bold;
    width: 200px;
    height: 60px;
    text-align: center;
}
#player1, #player2 {
    justify-self: center;
}

#diceroll {
    grid-row: 8/9;
    display: grid;
}
#die1 {
    grid-column: 1/2;
    justify-self: right;
}
#die2 {
    grid-column: 2/3;
    justify-self: left;
}

.die {
    width: 48px;
    height: 48px;
}

