body {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
}

button {
	background-color: white;
	color: black;
	padding: 8px 16px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 4px;
	border: 2px solid #0075ff;
	transition-duration: 0.4s;
}

button:hover {
  background-color: #0075ff;
  color: white;
}

.counter {
	border: 2px solid #0075ff;
	border-radius: 4px;
	font-size: 14px;
	padding: 8px 16px;
	width: 30px;
	text-align: center;
}

.tileFront {
	position: absolute;
	width: 64px;
	height: 64px;
	border-radius: 8px;
	border: 2px solid grey;
	z-index: 1;
}

.tileBack {
	position: absolute;
	width: 64px;
	height: 64px;
	background-color: grey;
	border-radius: 8px;
	border: 2px solid grey;
	z-index: 2;
}

.tileBack:hover {
	  background-color: lightgrey;
	  cursor: pointer;
}