@charset "UTF-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*Varela Round*/
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

/*Nunito Sans*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}
.myclear {
	clear: both;
}
body {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 400;
	font-size: 100%;
	min-height: 100vh;
}
#container {
	max-width: 1200px;
	min-height: 100vh;
	margin: 0 auto;
	background-color: #fff;
	box-shadow: 0px 0px 20px 10px rgba(90, 90, 90, 0.5);
}
header {
	text-align: center;
}
header h1{
	padding: 2%;
	color: #777;
	font-size: 30px;
	line-height: 1;
}
main {
	padding:1%;
}

main a{
	text-decoration: none;
}

main p, main h2, main h3{
	padding:8px;
}

table{
	width:100%;
}

table th{
	background-color: black;
	color: white;
	text-align: left;
	font-weight: 700;
	font-size: 120%;
	padding:8px;
}

table td{
	text-align: left;
	font-weight: 400;
	font-size: 110%;
	padding:8px;
}


tr:nth-child(odd) td {
  background-color:#D1FFF3;
}

tr:nth-child(even) td {
  background-color:#DDFF99;
}

tr.tableTotals td{
	background-color:#DFDFDF;
	font-size: 120%;
	font-weight: 800;
}

button{
	padding:8px;
}

/*Create numberStatus formatting*/
.numberStatus {
	font-size: 2em;
	color: red;
}

/*Make question statement responsive*/
#question_statement {
	width: 100%
}

/*Format select menu*/
.jumpMenu {
	color: #FFFFED;
	background-color:#8B0000; 
	font-size: 20px;
	border-radius: 100px;
}