body
{
	font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	margin: 0;
	background-color: black !important;
	color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

#page
{
	background-color: white;
	max-width: 1280px;
	margin: 0 auto;
	
	height:auto !important;
	min-height: 100%;
}

#header
{
	margin: 0 !important;
}

#header img
{
	width: 100%;
	height: auto;
}

.container
{
	max-width: 800px;
	width: 70%;
	background: white;
	border-radius: 0px;
	padding: 30px;
	/*box-shadow: 0 20px 40px rgba(0, 0, 0, .4);*/
	margin: 0 auto;
}

h1
{
	font-size: 42px !important;
	text-align: left !important;
}

h2
{
	font-size: 36px !important;
}

h3
{
	font-size: 30px !important;
}

button
{
	background: #22c55e;
	border: none;
	padding: 14px 22px;
	border-radius: 0px;
	font-size: 16px;
	color: #052e16;
	font-weight: 600;
	cursor: pointer;
}

button: disabled
{
	opacity: .5;
	cursor: not-allowed;
}

.answers
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin: 20px 0;
}

.answer
{
	border: 2px solid #334155;
	border-radius: 0px;
	padding: 16px;
	cursor: pointer;
	transition: .2s;
}

.answer:hover
{
	border-color: #22c55e;
	transform: translateY(-2px);
}

.answer.selected
{
	border-color: #22c55e;
	background: #052e16;
	color: white;
}

.progress
{
	height: 8px;
	background: #1e293b;
	border-radius: 0px;
	margin-bottom: 20px;
	overflow: hidden;
}

.progress-bar
{
	height: 100%;
	background: #22c55e;
	width: 0%;
}

.result img
{
	width: 180px;
	margin: 20px auto;
	display: block;
}

.center
{
	text-align: center;
}

.justify
{
	text-align: justify;
}

@media screen and (max-width: 1024px)
{
	.answers 
	{
		grid-template-columns: 1fr;
	}
	.container
	{
		width: 95%;
	}
}