body {
    margin: 0px;
}

table {
    width: 100%;
    height: 70vh;
    background-color: rgb(30, 30, 30);
    color: white;
}

td {
    width: 25%;
    text-align: center;
    font-size: 24px;
    background-color: rgb(20, 20, 20);
    font-family: Arial, Helvetica, sans-serif;
}

td:hover {
    background-color: rgb(30, 30, 30);
    cursor: pointer;
}

#resultArea {
    height: 30vh;
    background-color: rgb(40, 40, 40);
    color: white;
    font-size: 48px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;
}

#result {
    background-color: rgb(67, 55, 236);
}

#result:hover {
    background-color: rgb(110, 101, 235);
}

.highlight {
    background-color: rgb(25, 25, 25);
}