body {
    font-family: "Roboto", sans-serif;
    margin: 0;
}

table {
    width: 100%;
    height: 70vh;
    color: white;
    background-color: #232323;
    text-align: center;
    font-size: 30px;
}

td {
    width: 25%;
    background-color: rgb(30, 30, 30);
}

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

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

#result {
    background-color: rgb(0, 0, 120);
}

#result:hover {
    background-color: rgb(0, 0, 100);
}

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

#website-button {   
    position: absolute;
    left: 0;
    top: 0;
    margin: 1em;

    a {
        text-decoration: none;
        color: white;
        font-size: 18px;
        background-color: #0d6efd;
        border-radius: 5px;
        font-weight: bold;
        padding: 0.3em 1.5em;
    }
}