body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(27deg, rgba(254,0,0,1) 0%, rgba(154,190,112,1) 24%, rgba(34,193,195,1) 61%, rgba(253,187,45,1) 100%);
    font-family: Arial, Helvetica, sans-serif;
}

.title {
    font-size: 35px;
    font-weight: 999;
}

.instruction {
    font-size: larger;
    font-weight: bolder;
}

.enter {
    background-color: rgba(0, 157, 255, 0.55);
    border-radius: 15px;
    padding: 5px;
    border: 3px solid blue;
}

hr {
    visibility: hidden;
}

.box {
    background-color: rgb(159, 221, 255);
    font-size: large;
    border-radius: 15px;
    border: none;
    text-align: center;
    color: rgb(80, 80, 80);
    transition: 0.2s ease-out;
}

.box:hover {
    background-color: rgb(136, 213, 255);
    font-size: x-large;
    color: black;
}

.submit {
    background-color: rgb(0, 145, 255);
    font-size: x-large;
    border-radius: 15px;
    border: 3px solid blue;
    font-weight: 999;
    color: black;
    transition: 0.2s ease-out;
}

.submit:hover {
    background-color: rgb(0, 81, 255);
    font-size: xx-large;
    color: white;
}

table, td, th {
    width: 200px;
    height: auto;
    border: 1px solid black;
    border-radius: 15px;
    padding: 2px;
    background-color: white;
    align-self: center;
    justify-self: center;
}

.board {
    background-color: rgba(15, 231, 80, 0.575);
    border: 3px solid rgb(15,231,80);
    border-radius: 15px;
    padding: 5px;
    display: none;
    justify-content: center;
}

.hidden {
    background-color: transparent;
    border: none;
    color: rgb(60, 60, 60);
    padding: 1px;
    margin: 0;
    font-size: large;
}

.bingo {
    color: rgb(0, 26, 255);
    font-size: 50px;
    font-weight: 999;
}

.exportContainer {
    background-color: rgba(255,255,255,0.65);
    border-radius: 15px;
    display: none;
}

.exportSaved {
    background-color: white;
    border-radius: 15px;
    border: none;
    text-align: center;
    justify-items: center;
    justify-content: center;
    justify-self: center;
}

.centeredTable {
    margin-left: auto;
    margin-right: auto;
}

.goodTable {
    margin-left: auto;
    margin-right: auto;
}

#boxTxt {
    display: none;
}