body {
    font-size: 100%;
    font-family: 'Boogaloo', cursive;
    color: white;
    background-color: black;
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-position-y: 0%;
    background-position-x: center;
}
h1 {
    font-size: 400%;
    margin-bottom: 0;
    font-weight: normal;
}
p {
    margin-top: .25em;
    margin-bottom: .25em;
    font-size: 200%;
}
#site {
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.5em;
    text-align: center;
}
.cell {
    color:black;
    display: table;
    width: 7em;
    height: 7em;
    float: left;  
    cursor: pointer;
    z-index: 1000;
    transition: 200ms ease-in-out;
    position: relative;
}
.cell:hover {
    z-index: 2000 !important;
}
.break {
    clear: left;
}
.cell div {
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: none;
    border: .25em solid lightgray;
    display: table-cell;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    transition: 200ms ease-in-out;
    overflow: hidden;
    cursor: pointer;
    transform: scale(0.8);
}

.cell div:hover {
    transform: rotate(0deg) !important;
    transform: scale(1.25) !important;
}

.marked {
    background-image: url(bingo_stamp.png) !important;
    border-color: #3397b1 !important;
}
.invert {
    background-image: url(bingo_stamp.png) !important;
    background-color: black !important;
    color: white !important;
    border-color: #3397b1 !important;
}

.bingo {
    background-color: #1eb8b0 !important;
    border-color: #1eb8b0 !important;
}
button {
    font-family: 'Boogaloo', cursive;
    font-size: 100%;
    color: lightgray;
    margin-bottom: .5em;
    border: .125em solid lightgray;
    background-color: black;
    padding: .1em .2em;
    border-radius: 25%;
}

button:hover, button:active {
    color: white;
    border-color: white;
    background-color: #3397b1;
}

/* Snow */
.flurry-container span {
    background-image: url(vigold.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 1em;
    height: 1em;
    color: yellow !important;
}