body {
	color: #fff;
}

.choice-container {
	display: flex;
	margin-bottom: 0.8rem;
	width: 100%;
	max-width: 80rem;
	border-radius: 4px;
	background: rgb(18, 93, 255);
	font-size: 3rem;
	min-width: 0;
	transition: all 100ms ease-in-out;
}

.choice-container:hover {
	cursor: pointer;
	box-shadow: 0 0.4rem 1.4rem 0 rgba(6, 103, 247, 0.5);
	transform: scale(1.02);
}

.choice-prefix {
	padding: 2rem 2.5rem;
	color: white;
}

.choice-text {
	padding: 2rem;
	width: 100%;
}

.correct {
	background: linear-gradient(32deg, rgba(11, 223, 36) 0%, rgb(41, 232, 111) 100%);
}

.incorrect {
	background: linear-gradient(32deg, rgba(230, 29, 29, 1) 0%, rgb(224, 11, 11, 1) 100%);
}
​​
/*heads up display */

#hud {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	width: 100%;
	margin-bottom: 3rem;
}

.hud-item {
	flex: 1;
}

.hud-prefix {
	text-align: center;
	font-size: 2rem;
}

.hud-main-text {
	text-align: center;
}

#progressBar {
	width: 20rem;
	height: 3rem;
	border: 0.2rem solid rgb(3, 153, 20);
	margin-top: 2rem;
	border-radius: 50px;
	overflow: hidden;
}

#progressBarFull {
	height: 100%;
	background: rgb(3, 153, 20);
	width: 0%;
}

.btn.home-btn,
.btn.restart-btn {
	text-align: center;
	width: 100%;
	padding: 0.25em;
}

@media screen and (max-width: 768px) {
	#hud {
		flex-direction: column;
		align-items: stretch;
	}

	.hud-item {
		width: 100%;
	}

	.choice-container {
		max-width: 100%;
	}

	.choice-prefix,
	.choice-text {
		font-size: 2.2rem;
	}
}