.win-tile-container {
	display: grid;
	grid-gap: 3px;
}

.win-tile {
	justify-self: stretch;
	background-color: #aeb3aa;
	padding: 2px;
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	cursor: pointer;
}

.win-tile:hover {
	background-color: #9999d2;
	border: 2px solid black;
	padding: 0px;
}

.win-tile-label {
	color: #161e0e;
}
.win-tile:hover .win-tile-label {
    color: #fff;
}

.win-tile .tile-label {
	background-color: #aeb3aa;
	color: #3f413d;
}

.win-tile:hover  .tile-label {
	background-color: #9999d2;
	color: #000;
}