body
{	
	justify-items: center;
	text-align: center;
	background-color: #333;
	color: white;
	text-shadow: 0 0 4px black;
}
a
{
	color: #ffa;
}
li
{
	text-align: left;
}

table, tbody, th, tr, td
{
	border-collapse: collapse;
	border: 1px solid white;
}
td, th
{
	padding: 0.5rem;
}

*:hover
{
	filter:brightness(1.2);
}

.link-button
{
	display: inline-block;
	border-radius: 1rem;
	padding: 0.5rem 1.5rem;
	background-color: #777;
	box-shadow: 1px 1px 10px 0px black;
	margin: 0.25rem;
	margin-bottom: 0.5rem;
}
.link-button h1
{
	margin: 0;
}

.game-description-wrapper
{
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    flex-direction: row;
    justify-content: space-around;
    row-gap: 2rem;
    column-gap: 1rem;
}
.game-description-card
{
	max-width: calc(31% - 1rem);
	background-color: #555;
	border-radius: 0.5rem;
	box-shadow: 0 0 20px -3px black;
	padding: 1rem;
	color: #fff;
}

.subtle
{
	color: #ccc;
	font-size: 0.85em;
}