body {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header h1 {
	text-transform: uppercase;
	font-weight: bold;
	display: flex;
	align-items: center;
}
header h1 .or { margin: 0 .2em }
#score {
	font-weight: bold;
	text-transform: uppercase;
	display: none;
}
.or { font-size: 0.8em }
#quote {
	text-align: center;
}
#quote blockquote {
	font-size: 2rem;
	font-style: italic;
	margin: 0 40px 1em;
}
#who {
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}
main { display: none }
[data-game-target=index] {
	font-weight: bold;
	margin: 0;
}
#options {
	display: flex;
	justify-content: center;
	align-items: center;
}
#options a {
	display: grid;
	align-items: center;
	width: 300px;
	height: 180px;
	text-align: center;
	margin: 0 1em;
	background-size: cover;
	background-repeat: no-repeat;
	transition: background-image .5s;
	flex-wrap: wrap;
	box-sizing: border-box;
}
#options a,
[data-game-target=next] button,
[data-game-target=start] button {
	color: #333;
	border: 1px solid #666;
	border-radius: .5em;
	text-decoration: none;
	background: none;
	cursor: pointer;
}
[data-game-target=next] {
	text-align: center;
	margin-top: 2em;
	visibility: hidden;
}
[data-game-target=next] button,
[data-game-target=start] button {
	padding: 1em 1.5em;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 600;
}
#options a img {
	grid-column: 1;
	grid-row: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -10;
	opacity: 0;
	transition: opacity .5s;
	border-radius: .3em;
}
#options a:hover:not(.disabled) img { opacity: 0.5 }
#options a span {
	grid-column: 1;
	grid-row: 1;
	z-index: -5;
}
#options a.correct {
	border-color: green;
	border-width: 3px;
	color: green;
	font-weight: bold;
}
#options a.wrong {
	border-color: darkred;
	border-width: 3px;
	color: darkred;
	font-weight: bold;
}
#options a.answer img { opacity: 0.5 }
aside {
	display: none;
	text-align: center;
}
noscript { text-align: center }
aside p:first-child { font-size: 2rem }
#final_score { font-weight: bold }

@media screen and (min-width: 768px) {
	header, main { padding: 0 2em }
}
