@import url('https://fonts.googleapis.com/css2?family=Play&display=swap');

/* GENERAL */
html, body {
	min-height: 100vh;
	max-width: 100vw;
}

body {
	margin: 0;
	font-family: Play;
	background: black;
	color: white;
	text-align: center;
	user-select: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

body * {
	box-sizing: border-box;
}

a:visited, a:active, a:hover, a {
	text-decoration: none;
	color: white;
}

/* HEADER */
h1, h3 {
	margin: 0;
}

h1 {
	padding: 0.5rem;
}

h3 {
	padding: 0.1rem;
}

/* IMAGE */
img {
	max-height: 98vh; 
	max-width: 100vw;
	border: 1px solid white;
}

#title {
	margin: 0;
	font-weight: bold;
	cursor: pointer;
}

/* FOOTER */
footer {
	margin: 0.1rem auto;
	padding: 0 0.3rem;
}

footer a, footer span {
	font-size: 0.75rem;
}

/* TABLE */
table {
	text-align: left;
	border: 1px solid white;
	margin: 0 auto;
}

td {
	padding: 0rem 0.2rem;
}
