body {
	background-image: url('/resources/background.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;

	font-family: Arial, Helvetica, sans-serif;
	text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black;
	text-align: center;
	color: #FFFFFF;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

	min-height: 100vh;
	padding: 2em;
	box-sizing: border-box;
	margin: 0;
	overflow-x: hidden;
}

h1 {
	font-weight: bolder;
	font-size: 3.3em;
	text-shadow: 0 4px 10px rgba(214, 183, 12, 0.5);
	margin-bottom: -0.69em;
}

h3 {
	font-weight: bolder;
	font-size: 2em;
	text-shadow: 0 4px 10px rgba(255,255,255,0.5);
	margin-bottom: 0.3em;
}

h6 {
	color: gray;
	font-size: 1.2em;
	font-family:"Comic Sans MS","Comic Neue","Chalkboard SE","Marker Felt",cursive,sans-serif;
	margin-bottom: -1.7em;
}

table {
	width: 90%;
	max-width: 400px;
	margin: 0 auto;
	border-collapse: collapse;
	background-color: transparent;
	margin-bottom: 30px;
}

table, th, td {
	border: 1px solid #444;
	background-color: transparent;
}

th, td {
	/* border: 2px solid black; */
	padding: 0.5em 1em;
	text-align: center;
}

th {
	font-size: xx-large;
	font-weight: bold;
	background-color: rgba(255,255,255,0.2);
}

td {
	font-size: x-large;
	font-weight: bold;
}

tr:nth-child(even) {
	background-color: rgba(255,255,255,0.1);
}

tr:nth-child(odd) {
	background-color: rgba(255,255,255,0.05);
}

p {
	font-size: 1.1em;
}

.logo {
	color: inherit;
	text-decoration: none;
}

a {
	display: inline-block;
	transition: transform 0.2s ease;
}

a:hover, a:focus {
	opacity: 0.8;
	transform: scale(1.05);
}
