html {
	font-family: Arial, sans-serif;
	background-image: url("forum-backdrop.jpg");
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-color: black;
}

body {
	margin: 0 auto;
	max-width: 50rem;
	vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
figcaption,
li {
	color: #f0f0f0;
	text-shadow: 0 0.1rem 0.4rem rgb(0 0 0 / 50%);
}

h1,
h2,
h3,
h4,
h5,
h6
{
	text-align: center;
	margin: 0;
}

h3,
h4,
h5,
h6 {
	text-align: left;
}

a:link {
	color: #5093cf;
}
a:visited {
	color: #b05ba4;
}
a:active {
	color: #e71e25;
}

.game-box,
.game-button {
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 9px;
	padding: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: transparent; /* Border is hidden by default and made visible by color overrides. This prevents visible border from affecting layout. */
}
a.game-button:hover {
	border-color: white;
}
a.game-button:active {
	background-color: rgb(60 60 60 / 50%);
}

html, main, body {
	height: 100%;
}

.centering-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

ul {

}

ul.game-buttons-container {
	list-style-type: none; /* Forum redirect links are only a list for semantics. */
	display: flex;
	justify-content: center;
	padding: 0; /* Remove default padding that otherwise pushes links off-center. */
	margin-top: 20px;
}

li {
	margin: auto auto;
}
