body{
    font-family: Arial;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0,0,0,.5), rgba(0,0,0,.5) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0,0,0,.2), rgba(0,0,0,.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0,0,0,.2), rgba(0,0,0,.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0,0,0,.5), rgba(0,0,0,.5) 1px, transparent 1px, transparent 100%);
    -webkit-background-size: 8px 8px;
    -moz-background-size: 8px 8px;
    background-size: 8px 8px;
}


a{
    color: #000;
}

.head-h1{
    color: #fff;
    letter-spacing: 0.05em;
    text-align: justify;
    text-align-last: justify;
    margin-block-start: 0em;
    margin-block-end: 0em;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 3em;
}

.head-h2{
    color: #fff;
    letter-spacing: 0.05em;
    text-align: justify;
    text-align-last: justify;
    margin-block-start: 0em;
    margin-block-end: 0em;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 1.5em;
}

.bingotable-outer{
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.bingotable-middle{
    display: table-cell;
    vertical-align: middle;
}

.bingotable-middler{
    margin-left: auto;
    margin-right: auto; 
    width: 320px;
    box-shadow: 5px 5px 5px #000;
}

.bingotable-inner{
    display: inline-block;
    padding: 10px;
    background-color: rgb(235,255,40);
    border: 1px solid #000000;
}

table{
    border-spacing: 0px;
    border-collapse: collapse;
}

td{
    border: 1px solid black;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 80%;
    font-weight: bold;
    background-color: rgb(255,255,255);
    word-break: break-all;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

td:hover{
    background-color: #ccc;
}

.line{
    text-decoration: line-through;
    background-color: #ccc;
}


@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.questionmark{
    animation-name: rotate;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    width: 60px;
    height: 60px;
    outline: 1px solid #000;
    outline-offset: -1px;
}

.questionmark h1{
    margin-top: 0px;
    margin-bottom: 0px;
}

.questionmark h1{
    margin-top: 0px;
    margin-bottom: 0px;
}

.info{
    position: fixed;
    bottom: 10px;
    left: 10px;
}

.passwords{
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.howto{
    position: fixed;
    top: 10px;
    right: 10px;
}

.howtoplay{
    position: fixed;
    width: 300px;
    min-height: 100px;
    top: 20px;
    right: 20px;
    border: 1px solid #000;
    box-shadow: 5px 5px 5px #000;
    display: none;
    padding: 10px;
}

.howtoplay > a{
    color: #fff;
    text-decoration: none;
}

.close{
    color: #fff;    
}

.print{
    position: fixed;
    top: 10px;
    left: 10px;
}


@media (max-width:500px){
    a{color: #fff;}
}

@media print {
    .info,
    .passwords,
    .howto,
    .print{
        display: none;
    }
}


