@charset "UTF-8";

.container {
	background: white;
	display: inline-block;
	padding-top: 2rem;
	width: 100%;
}

.grid {
	display: grid;
	grid-template-columns: repeat(2, 30vw);
	grid-template-rows: repeat(3, 30vw);
	grid-gap: 2rem;
	height: 100%;
	justify-content: space-evenly;
}

.tile {
	display: flex;
	background-size: 30vw;
	font-family: Arial;
	font-size: 115%;
	font-weight: bold;
}

.tile > a {
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.tile > a > span {
	display: block;	
	padding-left: 0.7rem;
	padding-top: 0.7rem;
	color: white;
}