:root 
{
	--sp: 20px;
	--br: 15px;
	--imgW: 200px;
	/* --imgW: 225px; */
	--speed: 400ms;
	--bg: navy;
	--max: 700px;
}
* 
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: arial;
}
body 
{
	height: 100vh;
	background-color: var(--bg);
	padding: var(--sp);
	padding-bottom: 55px;
}
body > main 
{
	/* max-width: var(--max); */
	margin: var(--sp) auto;
	padding: var(--sp);
	background-color: whitesmoke;
	border-radius: var(--sp);
}
form 
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
form > div.survey-items
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
div.question-group > label:hover
{
	border-color: black;
}

div.question-group > label
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: border-color var(--speed);
	border: 5px solid transparent;
	border-radius: var(--br);
	padding: calc(var(--sp) / 2);
	/* margin: var(--sp); */
}
div.question-group > input:checked + label 
{
	background-color: black;
	color: white;
}
div.question-group input
{
	display: none;
} 
div.question-group img 
{
	max-width: var(--imgW);
}
input[type=submit]:hover
{
	color: black;
	background-color: white;
}
input[type=submit]
{
	padding: calc(var(--sp) / 2) var(--sp);
	margin: var(--sp);
	cursor: pointer;
	border-radius: var(--br);
	transition: background-color var(--speed), color var(--speed);
	background-color: black;
	color: white;
	font-size: 25px;
}
h1, h2, h3, h4
{
	text-align: center;
	margin: calc(var(--sp) / 2);
}
header > h1 
{
	color: white;
	font-size: 45px;
	text-shadow: 2px 2px 2px black;
}
div.survey-results > div > span 
{
	display: block;
	padding: calc(var(--sp) / 2);
	font-size: 25px;
}
div.survey-results > div > h3 
{
	text-align: left;
	color: var(--bg);
}
div.survey-results strong
{
	color: hotpink;
	font-style: normal;
}
div.survey-results > iframe {flex-grow: 1;}
div.survey-results 
{
	border: 1px solid #666;
	border-radius: var(--br);
	margin: var(--sp);
	padding: calc(var(--sp) / 2);
	display: flex;
	flex-grow: 1;
	min-height: 80vh;
}
div.special-offer > p {text-align: center; padding: calc(var(--sp) / 3);}
div.special-offer > p > a:hover
{
	background-color: var(--bg);
	color: white;
}
div.special-offer > p > a 
{
	text-decoration: none;
	display: inline-block;
	border: 1px solid #666;
	padding: var(--sp);
	border-radius: var(--br);
	font-size: 20px;
	color: var(--bg);
	font-weight: bold;
	transition: color var(--speed), background-color var(--speed);
}
div.special-offer > p:first-child
{
	padding-top: var(--sp);
}

/* SURVEY HOME PAGE SPECIFIC STUFF */
main.survey-home > *,
main.survey-home p
{color: black;}
@media (max-width: 700px)
{
	:root 
	{
		--imgW: 150px;
	}
}