@media (max-width: 480px) {
    .bingo {
        max-height: 65%;
    }
}

* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
}
body {
    font-family: 'Lemon', cursive;
    color: white;
    background-color: rgba(87, 11, 127, 1);;
    background: no-repeat url("/static/background.png") center;
    background-size: cover;

}
/*.container {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}*/

header {
    text-align: center;
    /*color: white;*/
    /*background: black;*/
    min-height: 6.5em;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header div {
    /*width: 700px;*/
    min-width: 50%;
    padding: 1em 3em;
}

.drop {
    background-color: rgba(56, 8, 78, 1);
    box-shadow: 8px 8px 0 black;
}

main {
    margin: 2em auto 1em;
	width: 900px;
    max-width: 100%;
    padding: 1em 2em;
}

footer {
/*    position: sticky;
    top: 100vh;*/
    width: 100%;
    padding: 1em;
    min-height: 6em;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25em;
    margin-bottom: 0.5em;
}
footer div {
    /*width: 700px;*/
    min-width: 50%;
    padding: 1em;
    margin: 0.5em;
}
footer ul {
    margin: 0;
    padding: 0;
}
footer ul li {
    display: inline-block;
    margin: 0;
    padding: 0 0.5em;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    /*paint-order: stroke fill;*/
    color: white;
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: white;
    text-decoration: none;
}
a {
    color: white;
}

.get-board {
    text-align: center;
    margin: 1em;
}

.get-board form {
    margin: 0;
}

.get-board input {
    text-align: center;
    min-width: 25%;
    margin: 0.5em;
    font-size: 1.1em;
    font-family: 'Lemon', cursive;
}

.subtitle {
    text-align: center;
    margin-bottom: 0.5em;
}
.subtitle a {
    /*color: black;*/
}
.bingo {
    max-width: 100%;
    overflow: auto;
}

.bingo table {
    background-color: black;
    /*padding: 1px;*/
	/*border: 2px solid white;*/
    border-spacing: 4px;
    /*border-collapse: collapse;*/
}
.bingo table td {
    text-align: center;
	/*border: 2px solid white;*/
	padding: 0.5em;
	width: 180px;
	height: 100px;
    min-width: 5em;
	max-width: 20%;
    cursor: pointer;
}

.bingo table td.selected {
    background-color: green;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}
.bingo .notes {
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}
.bingo .notes ol {
    margin-bottom: 0.5em;
}
.bingo .notes ol li {
    padding: 0.25em 0.5em;
}