* { 
	margin: 0; 
	padding: 0;
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box; 
}
html { 
	font-family: tahoma;
	color: #888;
	font-size: 100.01%;
	height: 100%;
}  
body {
	min-height: 100%;
} 

p {
	margin: 0 0 1em 0;
}

a { color: #222; text-decoration:none; }

a:link {
	color: #222;
	-webkit-transition: color 300ms linear;
	-moz-transition: color 300ms linear;
	-o-transition: color 300ms linear;
	-ms-transition: color 300ms linear;
	transition: color 300ms linear;
}
a:hover {
	color: #aaa;
	-webkit-transition: color 300ms linear;
	-moz-transition: color 300ms linear;
	-o-transition: color 300ms linear;
	-ms-transition: color 300ms linear;
	transition: color 300ms linear;
}

#container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#content {
	display: flex;
	gap: 36px; 
} 

@media (width <= 720px) {
	#content {
		flex-direction: column;
	}
	#content div a {
		width: 260px !important;
		height: 260px !important;
	}
	#content div.a a img {
		max-height: 200px !important;
	}
}

#content div {
	text-align: center;
	display: flex;
	flex-direction: column;
}

#content div .title {
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 12px;
}

#content div a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 320px;
	height: 320px;
	background-color: #F5F5F5;
	border-radius: 12px;
	padding: 12px;
	transition: all .3s ease;
}

#content div a:hover {
	background-color: #EAEAEA;
}

#content div a img {
	object-fit: contain;
	width: 100%;
}
#content div.a a img {
	max-height: 240px;
}

#content div.b a .link {
	margin-top: 12px;
}