body{
	font-size: 20px;
	font-family: sans-serif;
	color: #333;
	background-color: #E8F6F2;
}
#header{
	margin: auto;
	margin-bottom: auto;
	max-width: 90vw;
	width: 750px;
	transition: background-color 200ms cubic-bezier(0,0,0.2,1);
	background-color: #fff;
	border: 1px solid #dadce0;
	border-radius: 8px;
	border-top: solid 10px #45B34E;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	margin-bottom: 12px;
	padding: 24px;
	page-break-inside: avoid;
	word-wrap: break-word;
	font-size: 30px;
	position: fixed;
	top: 0;
	height: 40px;
	left: 50%;
	margin-left: -400px;
}
#quiz{
	margin: auto;
	max-width: 90vw;
	width: 800px;
	padding-top: 100px;
	padding-bottom: 60px;
}
.qa{
	transition: background-color 200ms cubic-bezier(0,0,0.2,1);
	background-color: #fff;
	border: 1px solid #dadce0;
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 24px;
	page-break-inside: avoid;
	word-wrap: break-word;
}
.question{
	font-size: 16px;
	letter-spacing: .1px;
	line-height: 24px;
	color: #202124;
	font-weight: 400;
	width: 100%;
	word-break: break-word;
	margin-bottom: 10px;
}
.answers {
  	font-family: Roboto,Arial,sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .2px;
	color: #202124;
	min-width: 1px;
}
.answers label{
  display: block;
  margin-left: 20px;
  margin-bottom: 20px;
}
input {
    float: left;
    margin-left: -20px;
    margin-right: 7px;
}
#centersubmit{
}
#submit{
	cursor: pointer;
	font-family: Roboto,Arial,sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .25px;
	line-height: 36px;
	text-transform: none;
	text-align: center;
	background-color: #009300;
      	border-radius: 3px;
	border: 0px;
	color: white;
	position: absolute;
}
#submit:hover{
	background-color: #12AF01;
}
#again{
        cursor: pointer;
        font-family: Roboto,Arial,sans-serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: .25px;
        line-height: 36px;
        text-transform: none;
        text-align: center;
        background-color: #009300;
        border-radius: 3px;
        border: 0px;
        color: white;
	position: absolute;
	right: 0;
	margin-right: 10px;
}
#again:hover{
        background-color: #12AF01;
}
#results{
	display: flex;
	justify-content: center;
	margin-top: 10px;
	margin-right: 20px;
	color: white;
	background-color: rgba(0, 149, 0, 0.61);
}
#footer{
	position: fixed;
        bottom: 0;
        height: 40px;
	max-width: 90vw;
	width: 790px;
	left: 50%;
	margin-left: -400px;
	background-color: #fff;
	border-top-color: rgb(218, 220, 224);
	border-top-style: solid;
	border-top-width: 1px;
	border-radius: 8px;
	border-bottom: solid 10px #45B34E;
	box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding-top: 10px;
	padding-left: 10px;
} 

