table {
    width: 100%;
    height: 70vh;
    background-color: #1e1e1e;
    color: rgb(248, 243, 243);
    font-family: "Oswald", sans-serif;
 
}

td {
   width: 25%;
   text-align: center;
   font-size: 24px;
   background-color: rgb(8, 3, 3);
}

td:hover {
    background-color: rgb(20, 20, 20);
    cursor: pointer;
}

body {
    font-family: "Oswald", sans-serif;
    margin: 0;
}

#resultArea {
    height: 30vh;
    background-color: rgb(40, 40, 40);
    color: white;
    font-size: 65px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;
}

#result {
    background-color: rgb(18, 151, 228);
}

#result:hover {
    background-color: rgb(26, 97, 155);
}

