/* Init */
.questions,
.results,
.question,
.show-results,
.time-warning {
	display: none;
}

/* Game-wide styles */
body {
	background-color: #fcfcfc;
}
header {
	/* background-color: #333; */
	background: rgba(0,0,0,1);
	background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(13,13,13,1) 47%, rgba(56,56,56,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,1)), color-stop(47%, rgba(13,13,13,1)), color-stop(100%, rgba(56,56,56,1)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(13,13,13,1) 47%, rgba(56,56,56,1) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(13,13,13,1) 47%, rgba(56,56,56,1) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(13,13,13,1) 47%, rgba(56,56,56,1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(13,13,13,1) 47%, rgba(56,56,56,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#383838', GradientType=0 );
	color: #fff;
	text-align: center;
	font-family: 'Noto Serif SC', serif;
}
h1 {
	font-family: 'Noto Serif SC', serif;
	font-size: 26px;
	padding: 10px 0 5px 0;	
}


/* Title screen */
.title-image {
	width: 100%;
	max-width: 352px;
	margin: 0 auto 40px auto;
}
.title-screen {
	text-align: center;
	padding-top: 30px;
}
.title-screen p {
	margin-bottom: 40px;	
	font-family: 'Noto Serif SC', serif;	
}
.title-screen .button {
	background-color: #333;
	transition: all ease 0.3s;
}
.title-screen  .button:hover {
	background-color: #111;	
}
#game-mode {
	display: inline-block;
    width: 50%;
    font-size: 14px;
}

@media screen and (max-width: 350px){
	.title-screen {
		padding-top: 0px;
	}
}


/* Question styles */
.question {
	padding-top: 20px;
}
.question h3 {
	margin-bottom: 40px;	
	font-family: 'Noto Serif SC', serif;
}
.question-button {
	padding: 10px 20px;
	display: block;
	background-color: #eee;
	transition: all 0.3s ease;
	color: #333;
}
.question-button:hover {
	background-color: #ddd;
}
.question-button svg {
	fill: currentColor;
}
.question-button.correct-answer {
	background-color: #ddffc6;
	background-image: url('../images/check-solid.svg');
	background-position: 95% 50%;
	background-repeat: no-repeat;
	background-size: 30px;
}
.question-button.incorrect-answer {
	background-color: #ffe4e4;
	background-image: url('../images/times-solid.svg');
	background-position: 95% 50%;
	background-repeat: no-repeat;
	background-size: 30px;
}
.question-button.out-of-time {
	background-color: #ffe4e4;
	background-image: url('../images/clock-regular.svg');
	background-position: 95% 50%;
	background-repeat: no-repeat;
	background-size: 30px;
}
.next-question, .show-results {
	display: block;
	padding: 10px 20px;
	background-color: #ddd;
	transition: all 0.3s ease;
	text-align: center;
	background-image: url('../images/arrow-right-solid.svg');
	background-position: 95% 50%;
	background-repeat: no-repeat;
	background-size: 30px;
	opacity: 1;
}
.time-warning {
	text-align: center;
	font-weight: bold;
}
.progress {
	font-family: 'Noto Serif SC', serif;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 350px){
	.question h3 {
		margin-bottom: 20px;
	}
	p.progress {
		margin-bottom: 0px;
	}
}


/* Results */
.results {
	text-align: center;
	font-family: 'Noto Serif SC', serif;
	padding-top: 40px;
}
.results p {
	text-align: center;
	font-family: 'Noto Serif SC', serif;
	font-size: 22px;
}
.results h2 {
	font-size: 30px;
	font-family: 'Noto Serif SC', serif;	
	font-weight: bold;
}
.results .button {
	background-color: #333;
	width: 100%;
	max-width: 320px;
	transition: all ease 0.3s;
	margin-bottom: 0;
	padding-top: 20px;
	padding-bottom: 20px;
}
.results .button:hover {
	background-color: #111;	
}
.results .button.restart {
	background-image: url('../images/redo-alt-solid.svg');
	background-position: 95% 50%;
	background-repeat: no-repeat;
	background-size: 20px;
	margin-bottom: 0;
}
.results .button.tweet {
	background-image: url('../images/twitter-logo.svg');
	background-position: 97% 50%;
	background-repeat: no-repeat;
	background-size: 30px;	
} 
.podcast-link a {
	font-size: 16px;
}


/* Countdown */
.countdown {
	display: none;
	width: 100%;
	height: 20px;
	background-color: #fff;
}
.countdown div {
	background-color: rgba(0,256,0);
	width: 100%;
	height: 20px;
}
.question-id {
	position: absolute;
	top: 10px;
	right: 10px;
	display: none;
}