body > section#info div#grid {
	display: grid;
	width: 100%;
	gap: 10px;
	grid-auto-flow: row;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-columns: 1fr;
	grid-template-rows: 100px repeat(3, 1fr);
	grid-auto-rows: 1fr;
}

body > section#info div#grid div {
	height: 250px;
	text-align: center;
	vertical-align: middle;
	line-height: 250px;
	font-weight: 700;
	font-size: 24pt;
	background: #f2f2f2;
}

body > section#info div#grid div:hover {
	background: #ffd215 !important;
}

body > section#info div#grid div a {
	text-decoration: none;
	width: 100%;
	height: 100%;
	display: inline-block;
	color: #000;
}

body > section#info div#grid div.row1 {
	grid-column-start: 1;
	grid-column-end: 4;
	height: 100px;
	line-height: 100px;
}
