* {
    background-color: gray;
    box-sizing: border-box;
}

div.column {
    float: left;
    width: 50%;
}

img.humanDice,
img.computerDice {
    width: calc(100% / 6);
}

.winner {
    background-color: teal;
    border: 1px dotted black;
    font-family: 'Times New Roman', Times, serif;
}

table {
    border-collapse: collapse;
    width: 100%;
}
table,
tr,
td {
    border: 1px solid gold;
}