.game {
    display: flex;
    justify-content: center;
    align-items: center;
  	flex-direction: column;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
	position: relative;
}
.game .button.active {
	background: #f4e300 !important;
    color: #484848;
}
.game-options {
	margin: 10px;
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.game-ura {
	 display:none;
}
.game-ura.show {
	display: block;
    position: absolute;
    z-index: 2;
}
.score{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  padding: 20px 10px;
}
 /* .score > *{
    border-radius: 5px;
    padding: 5px;
    background-color: #222;
    color: beige;
  }*/
.game-table {
	max-width: 800px;
    display: inline-flex;
    flex-wrap: wrap;
	margin-bottom: 10px;

}
.game-card {
        flex: 0 0 23%;
        aspect-ratio: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        background: beige;
        border-radius: 5px;
        transition: all .2s linear;
        margin: 1%;
	}
    .game-card img{
        display: none;
		max-width: 148px;
    	max-height: 148px;
		cursor: pointer;
	}
	.game-card img + img{
        display: block;
     }
    .game-card.flip {
    	background: #5dc6ff !important;
        transform: perspective(100px) rotateY(180deg);
	}
    .game-card.flip img {
     	display: block;
		max-width: 158px;
    	max-height: 158px;
		background: #ffffff;
		padding: 2px 3px 2px 3px;
	}
    .game-card.flip img + img{
        display: none;
    }
    .game-card.okay {
    	background: #76db82 !important;
    }

        .game-card:hover{
            background: #d1d1c0;
        }

@media (max-width: 426px)  and (min-width:321px){
	.game-card.flip img,  .game-card.flip img + img{
		max-width: 68px;
    	max-height: 68px;
     }

	.game-card img + img {
		max-width: 68px;
		max-height: 68px;
	}
}
@media (max-width: 320px){
	.game-card.flip img,  .game-card.flip img + img {
		max-width: 48px;
    	max-height: 48px;
    }
	.game-card img + img {
		max-width: 48px;
		max-height: 48px;
	}
}


