#main {
	padding: 2em;
}
	h1 {
		text-align: center;
		margin-bottom: 1em;
	}
	#tool_tiles {
		display: flex;
		gap: 1em;
		justify-content: center;
	}
		.tool_tile {
			height: 16em;
			width: 14em;
			display: flex;
			flex-direction: column;
			justify-content: flex-end;
			background-repeat: no-repeat;
			background-position: center center;
			background-size: auto 100%;
			padding: 1em;
			border-radius: 1em;
			border: 1px solid rgba(245, 236, 228, 0.3);
			text-shadow: 0px 0px 5px #000;
			box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
			background-color: rgba(0,0,0,0.2);
			transition: border 0.3s, background-size 0.2s;
		}
		.tool_tile:hover {
			text-decoration: none;
			background-size: auto 105%;
			border: 1px solid rgba(245, 236, 228, 0.7);
		}
		#gtd_tile {
			background-image: linear-gradient(180deg,rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 90%), url('/starcraft/img/gtd.jpg');
		}
		#td_tile {
			background-image: linear-gradient(180deg,rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 90%), url('/starcraft/img/td.jpg');
		}
		#guides_tile {
			background-image: linear-gradient(180deg,rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 90%), url('/starcraft/img/guides.jpg');
			background-size: 100% auto;
		}
		#guides_tile:hover {
			background-size: 105% auto;
		}
			.tool_tile_title {
				font-size: 1.2em;
			}
			.tool_tile_info {
				color: rgb(var(--text5));
			}
	