body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #282828;
    width: 100%;
}

table {
    width: 100%;
    height: 70vh;
    color: white;
    background-color: rgb(25, 25, 25);
    padding: 2px;
}

td {
    width: 25%;
    text-align: center;
    background-color: #141414;
    font-size: 24px;
    border-radius: 0.5em;
}

td:hover {
    background-color: rgb(30, 30, 30);
    cursor: pointer;
}

#resultArea {
    height: 30vh;
    background-color: #222222;
    background-image: url(SlarktLogoGrey.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: rgb(138, 138, 138);
    font-size: 64px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;
}

#result {
    background-color: rgb(67, 55, 236);
}

#result:hover {
    background-color: rgb(110, 101, 235);
}

.highlight {
    background-color: rgba(25, 25, 25);
}
@media screen and (min-width: 992px) {
    .mobile {display: none !important;}
    .no-mobile {display: block !important;}
    body {
        display: grid;
        justify-content: center;
        background-image: url(SlarktLogoGrey.svg);
        background-size: 33.33% 100%;
    }
    table {
        width: 80vh;
    }
    #resultArea {
        background-image: none;
        width: 80vh;
    }
}
