body{
	color: white;
}
.container{
	width: 80%;
	height: 80%;

}
.choice_container{
	display: flex;
	margin-bottom: 1rem;
	width: 100%;
	border-radius: 1rem;
	background: linear-gradient(45deg, rgb(9, 187, 241) 0%, rgb(0, 102, 255) 100%);
	font-size: 3rem;
	min-width: 60%;
}
.choice_container:hover{
	cursor: pointer;
	box-shadow: 0 0.4rem 1.4rem 0 rgba(8, 217, 244, 0.6);
	/* transition: transform 150ms; */
	transform: scale(1.02);
	transform: transform 100ms;
}

.choice_prefix{
	padding: 2rem 2.5rem;
	color: white;
}

.choice_text{
	padding: 2rem;
	width: 100%;
}

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

#hud{
	display: flex;
	justify-content: space-between;
}
.hud_prefix{
	text-align: center;
	font-size: 2rem;

}
.hud_main_text{
	text-align: center;
}

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

#progressBarFull{
	height: 100%;
	background: rgb(244, 248, 2);
	width: 0%;
}
/* 768以下都適用 */
@media all and (max-width: 768px){
	.choice_container{
		min-width: 40rem;
	}
}
