.game-selection-container h2 {
    text-align: center;
}

.game-selection-container .game {
    min-height: 220px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    /*transition: all .2s ease-in-out;*/
    margin: 0 10px 10px 0;
    position: relative;
}
.game-selection-container .game img{
    margin: 0 auto;
}
.game-selection-container .game:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    /*transform: scale(1.06);*/
    cursor: pointer;
}

.game-selection-container .game.soldatenspiel {
    background: url('/img/selection/soldatenspiel.png');
    background-size: cover;
}

.game-selection-container .game.schulterglatze {
    background: url('/img/selection/schulterglatze.png');
    background-size: cover;
}

.game-selection-container .game.admin {
    background: url('/img/selection/schulterglatze.png');
    background-size: cover;
}

.game-selection-container .game .button-wrapper {
    display: table;
    margin: 0 auto;
}

.game-selection-container .game .button-wrapper a {
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    transition-duration: 0.25s;
    transition-property: transform;
    transform: scale(1);
}

.panel.bigbait {
    border-color: #337ab7;
}

.panel-heading {
    color: white;
    font-weight: bold;
}

.panel.bigbait > .panel-heading {
    background-color: #337ab7;
}

.panel.admin {
    border-color: #d9534f;
}

.panel.admin > .panel-heading {
    background-color: #d9534f;
}

.panel.soldatenspiel {
    border-color: #34a853;
}

.panel.soldatenspiel > .panel-heading {
    background-color: #34a853;
}