html {
	color: #FFF;
	font-family: "League Spartan", sans-serif;
	font-size: 10px;
	position: relative;
	background-color: #000;
}

body {
	background-color: #580032;
	max-width: 1000px;
	margin: 0 auto;
}

header {
	padding: 4rem 2rem;
	text-align: center;
}

h1, #results-container h2 {
	color: #F7C36E;
	font-size: 3.5rem;
	font-family: "League Spartan", sans-serif;
	font-weight: 800;
}

.info {
	display: grid;
	grid-template-columns: 0.5fr 4fr;
	margin: 0 1rem 2rem;
	gap: 1.5rem;
}

.tracking {
	color: #F7C36E;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: end;
}

.question {
	font-size: 2rem;
	font-weight: 600;
}

.quiz-container {
	margin-bottom: 2rem;
	border-bottom: 1px solid rgb(220, 59, 70);
}

.answers {
	margin: 0 2rem;
}

.answers li {
	background-color: rgba(220, 59, 70, .4);
	padding: 1.5rem 3rem;
	margin-bottom: 2rem;
	font-size: 1.7rem;
	text-align: center;
	border-radius: 7px;

}

li:hover, button {
	cursor: pointer;
}

li.selected {
	background-color: rgba(220, 59, 70, 1);	
}

.button-contain {
	display: flex;
	justify-content: end;
	margin: 0 2rem;
}

#unanswered {
	font-size: 2rem;
	text-align: center;
	padding: 2rem;
	font-weight: 600;
	display: none;
}

#submit, #retake {
	background-color: rgba(255,138,95,1);
	padding: 1rem 3rem;
	font-weight: 700;	
	border-radius: 10px;
	border: none;
	color: #FFF;
	font-size: 1.7rem;
}

#submit {
	margin-bottom: 2rem;
}

#retake {
	background-color: rgba(220, 59, 70, .4);
	padding: 1.5rem 3rem;
	width: 100%;
	margin-bottom: 2rem;
	font-size: 1.7rem;
	text-align: center;
	border-radius: 7px;
}
img {
	width: 100%;
	height: auto;
}

#results-container {
	background-color: #580032;
	position: absolute;
	z-index: 100;
	display: none;
	padding: 0 2rem;
	max-width: 1000px;
}

#results-container h2 {
	color: white;
	font-size: 4rem;
	text-align: center;
}

#text {
	margin: 2rem 0;
}

#heading-contain {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	margin: 4rem 0;
}

#results {
	background-color: rgba(220, 59, 70, .4);
	border-radius: 7px;
	font-family: "League Spartan", sans-serif;
	padding: 2rem;
	margin-bottom: 4rem;
}

#results p {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

#results li {
	font-size: 1.7rem;
	margin-bottom: 1rem;
}

#results li:last-of-type {
	margin-bottom: 0;
}

#spiel {
	font-size: 1.7rem;
	line-height: 1.3;
	margin-bottom: 2rem;
}

#sentence {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

#caption {
	font-size: 1.5rem;
	font-style: italic;
	margin-top: 1rem;
}

@media screen and (min-width: 600px) {
	#full-quiz{
		max-width: 550px;
		margin: 0 auto;
	}
	
	.question {
		font-size: 2.3rem;
	}
	
	h1, #results-container h2 {
		font-size: 4rem;
	}
	
	#contain {
		display: grid;
		grid-template-columns: 2fr 1fr;
		gap: 2rem;
	}
	
	header {
		padding: 6rem 0;
	}
	
	li, .tracking {
		font-size: 1.9rem;
	}
	
	.info {
		margin: 0 4rem 2rem 2rem;
	}
	
	.answers {
		margin: 0 4rem;
	}
	
	#text {
	  margin: 3rem 0;
   }
	
	#results-container {
		padding: 0 4rem;
	}
	
	#spiel {
	  font-size: 2rem;
   }

   #sentence {
	  font-size: 2.3rem;
   }
	
	.button-contain {
		margin: 0 4rem;
	}
	
}

@media screen and (min-width: 1000px) {
	#results-container {
		height: 100vh;
	}
}







