body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

table {
    width: 100%;
    height: 70vh;
    color: white;
    background-color: #252525;

}

td {
    width: 25%;
    text-align: center;
    background-color: #202020;
    font-size: 24px;
}

td:hover {
    background-color: hwb(0 21% 79%);
    cursor: pointer;
}

#resultArea {
    height: 30vh;
    background-color: #454545;
    font-size: 70px;
    color: white;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;

}

#result {
    background-color: rgb(224, 123, 7);
}

#result:hover {
    background-color: rgb(168, 92, 5);
}

.highlight {
    background-color: #252525;
}