body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
table {
    width: 100%;
    height: 70vh;
    color: white;
    background-color: rgb(30, 30, 30);
}

td {
  width: 25%;
  text-align: center;
  background-color: #141414;
  font-size: 25px;
}

td:hover {
    background-color: rgb(30, 30, 30);
    cursor: pointer;
}

#resultArea {
    height: 30vh;
    background-color: rgb(76, 41, 133);
    color: white;
    font-size: 62px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;
}

#result{
    background-color: rgb(90, 26, 143) ;
}

#result:hover {
    background-color: rgb(73, 55, 235) ;
}

.highlight {
    background-color: rgb(24, 23, 24);
}