body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}
table {
    width: 100%;
    height: 70vh;
    background-color: rgb(25, 25, 25);
    color: #ffffff;
}
td {
    width: 25%;
    text-align: center;
    background-color: rgb(20,20,20);
    font-size: 24px;
}
td:hover {
    background-color: rgb(30,30,30);
    cursor: pointer;
}
#resultarea {
    height: 30vh;
    background-color: rgb(40, 40, 40);
    font-size: 72px;
    color: rgb(255, 254, 253);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;
}
#result {
    background-color: rgb(145, 41, 41);
}
#result:hover {
    background-color: rgb(97, 21, 21);
}
.highlight {
    background-color: rgb(25,25,25);
}