:root {
	--width: 50rem;
	--break: 600px;
	--accent: #07a;
	font-family: Avenir, sans-serif;
	background-color: #fff;
	color: #211;
	font-size: 125%;
}

header {
	max-width: var(--width);
	margin: 0 auto;
	font-size: 125%;
	text-align: center;
}
main {
	max-width: var(--width);
	margin: 0 auto;
	padding: 1rem;
}
footer {
	text-align: center;
	font-style: italic;
}

section {
	padding-bottom: 0.5rem;
}
section::after {
	content: "";
	display: block;
	margin-top: 2.5rem;
	margin-left: auto;
	margin-right: auto;
	width: 40%;
	height: 0.1em;
	background-color: var(--accent);
}
section:last-child::after {
	display: none;
}


h1, h2, h3 {
	line-height: 1.2;
	font-weight: normal;
	font-family: Georgia, serif;
}
h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3, .intro {
	font-size: 1.5rem;
}
a {
	color: var(--accent);
}
.play-button,
.shields {
	text-align: center;
}
.play-button a {
	display: inline-block;
	min-width: calc(40% - 2em);
	padding: 0.5em 1em;
	margin-bottom: 1rem;
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: bold;
	background-color: var(--accent);
	color: white;
	border-radius: 0.25rem;
	text-decoration: none;
	transition-duration: 0.3s;
	transition-property: transform;
	tranform-origin: center center;
}
.play-button a:hover {
	transform: scale(1.2, 1.2);
}
aside {
	font-style: italic;
}

table {
	max-width: 100%;
	overflow-x: scroll;
	font-size: 0.8rem;
	border-collapse: collapse;
}
td, th {
	padding: 0.25em 0.5em;
	text-align: left;
}
table img {
	display: block;
	max-width: 2rem;
}
.table-container {
	max-width: 100%;
	overflow-x: scroll;
}

@media screen and ( min-width: 600px ) {
	header {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header>* {
		padding: 1rem;
	}
	.float {
		float: right;
		padding-left: 1rem;
		padding-bottom: 1rem;
	}
	table {
		font-size: 1rem;
	}
}
