@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@1,300&display=swap');

body {
    font-family: "Ubuntu";
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    margin: 0px;
    user-select: none;
}

table {
    width: 100%;
    height:70vh;
    background-color:rgb(25,25,25);
    color: rgb(255, 255, 0);
}

td {
    width: 25%;
    text-align: center;
    font-size: 30px;
    border-width: 5px;
    border-color:rgb(238, 255, 0);
    transition: 1s;
    background-color:rgb(0, 0, 0);
}

td:hover {
    background-color: rgb(50,50,50);
    cursor: pointer;
}

#resultArea {
    height: 30vh;
    background-color: rgb(238, 255, 0);
    color: black;
    font-size: 64px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end ;
    padding: 24px;
    box-sizing: border-box;
    
}

.highlight {
    background-color: rgb(25, 25, 25);
}

.messageBox {
    position: fixed;
    top: 3%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(82, 224, 0);
    color: black;
    padding: 24px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 12px;
    display: none;
    text-size-adjust: 100%;
}