body {
    background: url('unicorn.jpg') top center no-repeat fixed;
    background-size:100% 100%;
    text-align: center;
    min-height: 100vh;
    margin: 0;
    min-width: 1024px;
}

body > div {
    width: 95%;
    margin: 2rem auto;
    border-radius: 3px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2),0 0 3px rgba(0, 0, 0, 0.2);
}

.protip {
    padding: 0 1rem;
}

.scoreboard {
    width: 90%;
    margin: 2rem auto;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1),0 0 4px rgba(0, 0, 0, 0.1);
    justify-content: space-evenly;
    display: none;
}

.scoreboard > div {
    padding: 3% 5%;
}

#score-title {
    color: #db2f2f;
}

#score {
    font-weight: bold;
}

h1 {
    font-size: 60px;
    margin-top: 0px;
    margin-bottom: 0px;
}

h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0.5rem;
}

p {
    font-size: 16px;
    margin: 0 0.25rem;
}

button {
    margin-left: auto;
    margin-right: 1rem;
    background-color: #EFEFEF;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 2px rgba(0,0,0,.2);
    border: none;
    border-radius: 2px;
    height: 2.25rem;
    text-align: center;
    line-height: 2.25rem;
    vertical-align: middle;
    display: block;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.container {
    background-color: rgba(255, 255, 255, 0.769);
}

.bingo-table {
    border-spacing: 0.4rem;
    margin: auto;
}

.bingo-table td {
    padding: 0;
    background-color: white;
    border-radius: 5px;
    border: 1px;
    border-style: solid;
    border-color: #bbbbbb;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 2px rgba(0,0,0,.2);
    transition: all .2s ease-in-out;
}

.bingo-table td:hover {
    background-color: #F9F9F9;
}

.bingo-table input {
    display: none;
}

.bingo-table label {
    cursor: pointer;
    display: table;
    width: 100%;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

/*.bingo-table input:checked ~ label {*/
.bingo-table td.checked {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255,255, 255, 0.8)), url("misc-genius.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bingo-table .hidden-desc > p {
    display: none;
}

.bingo-table .hidden-desc > h2 {
    font-size: 18px;
}

@font-face {
    font-family: 'Ubuntu-R';
    src: url('Ubuntu-C.ttf');
    font-weight: normal;
    font-style: normal;
}

textarea {
    resize: none;
    width: 90%;
    text-align: center;
    font-size: 13px;
    height: 22px;
}

* {
    font-family: "Ubuntu-R"
}
