body{
    font-family: 'Fira Sans', sans-serif;
    margin: 0;
}

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

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;
    min-height: 100px;
    background-color: rgb(40, 40, 40);
    text-align: right;
    font-size: 64px;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    line-break: anywhere;
    padding: 24px;
    box-sizing: border-box;
}

#result{
    background-color: rgb(61, 136, 250)
}

#result:hover{
    background-color: rgb(146, 189, 255); 
}

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