body {
    background-color: lightblue;
    margin: 0;
    height: 100vh;
    /* overflow: hidden; */
}

h1 {
    margin-top: 5px;
    position: absolute;
    left: 440px;
    transform: translateX(-50%);
}

.table {
    position: absolute;
    left: 20px;
    top: 40px;
    display: grid;
    grid-template-columns: repeat(7, 120px);
    grid-template-rows: repeat(19, 45px);
    background-color: wheat;
    width: 840px;
}

.table button {
    background-color: wheat;
    height: 45px;
    border-radius: 0;
    border: 1px solid black;
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
    font-weight: bold;
}

.table div {
    background-color: wheat;
    border: 1px solid black;
    text-align: center;
    vertical-align: middle;
    line-height: 45px;
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
    cursor: not-allowed;
    font-weight: bold;
}

.dices {
    position: absolute;
    top: 25vh;
    right: 120px;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(5, 150px);
    gap: 20px;
}

.dice {
    border: 3px solid white;
}

.dice.keep {
    border: 3px solid red;
}

.greyFont {
    color: darkgrey;
}

.cursorNotAllowed {
    cursor: not-allowed;
}

.rollDice {
    position: absolute;
    top: 40vh;
    right: calc(25vw - 70px);
    height: 50px;
    width: 200px;
    background-color: brown;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: x-large;
}

.table .current {
    background-color: lightcoral;
}

.smallDice {
    width: 50px;
    background-color: white;
}

.smallDices {
    width: 50px;
    position: absolute;
    right: -80px;
}

.smallDice.grey {
    background-color: lightslategray;
}