body:not([data-show=pollen]) .pollen {
	display: none;
}

.pollen {
	display: grid;
	display: grid;
	grid-template-columns: repeat(5, 128px);
	grid-template-rows: repeat(5, 128px);
	padding: 5px;
	width: calc(100vw - 20px);
	height: calc(100vw - 20px);
	max-width: 665px;
	max-height: 665px;
	box-sizing: border-box;

	border-radius: 15px;
	border: 5px solid var(--dirt-border);
	background-color: var(--dirt);
	color: var(--plant-green);

	font-size: .9rem;
	font-family: monospace;
	font-weight: bold;
}

.pollen .tile[data-revealed=revealed]{
	background: rgba(255,255,255,0.2);
}