label {
    display: block;
}

.container.bingo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container.bingo .tile {
    flex-basis: 20%;
    padding: 1em;
    border: 1px solid black;
}

.container.bingo .tile .tile-container {
    display: flex;
    flex-direction: column;
    padding: 1em 0;
}

.container.bingo .tile:nth-child(odd) {
    background-color: #ccc;
}

.container.bingo .tile.checked {
    background-color: coral;
}

.container.bingo .tile span {
    /*display: flex;*/
}
.container.bingo .tile .artist {
    font-weight: bold;
}
.container.bingo .tile .song {
    font-weight: bold;
}
