/**********************
basics
**********************/

html {
	scroll-behavior: smooth;

	color: #181818;
	--color-gray: #181818;
	--color-google-blue: #4c8bf5;
	--color-purple: #8a2be2;
	--color-dark-purple: #5636a7;

	--color-orange: #ef704d;
	--color-light-blue: #c9eaf2;
	--color-navy: #1a1f2d;
}

body {
	margin: auto;
	max-width: 800px;
}

img {
	max-width: 800px;
	margin: 1rem 0;
}

header:before {
    content:"";
    display: block;
    position: absolute;
    top:0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #f8f3e7;
}

h1, h2, h3, label, p, th, td {
	font-family: Georgia, serif;
	color: var(--color-navy);
}

h1 {
	text-align: center;
	font-size: 62px;
	line-height: 1em;
	font-weight: 400;
}

h2 {
	line-height: 2.4;
}

p {
	font-size: 20px;
	line-height: 2;
	font-weight: 100;
}

a {
	color: black;
}

a:hover {
	cursor: pointer;
	opacity: 60%;
}

button {
	float: left;
}

hr {
	margin: 3rem auto;
}

th, td {
	font-size: 16px;
	padding: 2px 6px;
}


li {
	line-height: 2;
}
/********************************
BUTTONS
********************************/

.primary-button, .secondary-button {
	font-family: helvetica-neue, sans-serif;
	font-size: 16px;
	letter-spacing: 2px;
	padding: 1em 1.2em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 250px;
	display: block;
	margin: 2rem auto;
	font-weight: 100;
}

.primary-button {
	border: 2px solid var(--color-orange);
	background-color: var(--color-orange);
	color: white;
}

.primary-button:hover {
	background-color: var(--color-orange);
	opacity: 80%;
	transition-duration: .2s;
	cursor: pointer;
	text-decoration: none;
	border: 2px solid var(--color-orange);
}

.secondary-button {
	background-color: white;
	border: 2px solid var(--color-orange);
	color: var(--color-orange);
}

.secondary-button:hover {
	cursor: pointer;
	background-color: var(--color-purple);
	color: white;
	text-decoration: none;
	transition-duration: .2s;
}


/********************************
TABLE
********************************/

.survey, .table {
	margin-bottom: 3rem;
}

.next-steps {
	margin: 3rem 0;
}

.next-steps button{
	margin-top: 0rem;
}

.results p {
	font-size: 14px;
	font-style: italic;
}

/********************************************
FORM STYLES
********************************************/

input {
	padding: 6px 10px;
	margin: 8px 0;
	box-sizing: border-box;
	font-size: 14px;
}

input[type=text] {
	width: 300px;
}

input[type=text]:focus {
	background-color: #f5fcff;
}

input[type=reset] {
	background-color: white;
	border:2px solid var(--color-light-blue);
	color: black;
	font-family: helvetica-neue, sans-serif;
	font-size: 10px;
	padding: 10px 2.2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

input[type=submit] {
	background-color: var(--color-light-blue);
	border: 2px solid var(--color-light-blue);
	color: black;
	font-family: helvetica-neue, sans-serif;
	font-size: 10px;
	padding: 10px 2.2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

input[type=submit]:hover {
	opacity: 60%;
	cursor: pointer;
}

input[type=reset]:hover {
	cursor: pointer;
	opacity: 60%;
}

.go-back {
	font-style: italic;
	padding: 1rem;
}

