.game{
	display: flex;
    justify-content: center;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    margin-top: 20px;
}

.card {
    width: 100px;
    height: 100px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

.card img {
    display: none;
	width: 100px;
	height: 100px;
}

.card.flipped img {
    display: block;
}

#status {
    margin-top: 20px;
}